post deprecatedhttps://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getAllAccounts
Pulls all accounts for the client. NOTICE this endpoint will return a maximum of 500 results starting January 13. Please migrate to /v3/accounts which supports pagination and filtering.
DEPRECATED
See /v3/accounts
Request Parameters
| Parameter | Required | Type | Description | 
|---|---|---|---|
| clientID | yes | string | TransactAPI Client ID | 
| developerAPIKey | yes | string | TransactAPI Developer Key | 
Sample Request
curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getAllAccounts
-d clientID=someclientid
-d developerAPIKey=somedeveloperkeyResponse Parameters
| Parameter | Type | Description | 
|---|---|---|
| statusCode | string | API Status Code | 
| statusDesc | string | API Status Description | 
| accountDetails | string | Get account details Array | 
Sample Response
{
    "statusCode": "101",
    "statusDesc": "Ok",
    "accountDetails":someArray
}
