post https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getAccount
This method is used to get all information for an account (createAccount).
Request Parameters
Parameter | Required | Type | Description |
---|---|---|---|
clientID | yes | string | TransactAPI Client ID |
developerAPIKey | yes | string | TransactAPI Developer Key |
accountId | yes | string | Account ID that is generated by the API once an account is created (createAccount). |
Sample Request
curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getAccount
-d clientID=someclientid
-d developerAPIKey=somedeveloperkey
-d accountId=A77654
Response Parameters
Parameter | Type | Description |
---|---|---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
accountDetails | string | Array of account information (all information of the matched account) |
Sample Response
{
"statusCode": "101",
"statusDesc": "Ok",
"accountDetails": {
"accountId": "A77654",
"accountName": "john",
"type": "Individual",
"entityType": "Revocable Trust",
"residentType": "domestic account",
"address1": "First street",
"address2": "Fourth Avenue",
"city": "ATLANTA",
"state": "GA",
"zip": "43543",
"country": "USA",
"phone": "4152323232",
"taxID": "43543543",
"kycStatus": "Pending",
"kycDate": "2016-02-23 13:29:30",
"amlStatus": "Pending",
"amlDate": "2016-02-23 13:29:30",
"suitabilityScore": "5",
"suitabilityDate": "2016-02-23 13:29:30",
"suitabilityApprover": "Smith",
"accreditedStatus": "Pending",
"accreditedInvestor": "income",
"accreditedInvestorDate": "02-02-2016",
"506cLimit": "50000",
"accountTotalLimit": "1000000",
"singleInvestmentLimit": "1000",
"associatedAC": "yes",
"syndicate": "yes",
"tags": "real estate",
"notes": "Offers",
"approvalStatus": "Pending",
"approvalPrincipal": "Charles",
"approvalLastReview": "12-02-2016",
"archived_status":"0",
"field1": "Account Field 1",
"field2": "Account Field 2",
"field3": "Account Field 3"
}
}