Parameter | Required | Type | Description |
---|
clientID | yes | string | TransactAPI Client ID |
developerAPIKey | yes | string | TransactAPI Developer Key |
types | yes | string | Account |
accountId | yes | string | Account Id that is generated by the API when an Account is created (createAccount) |
curl --request POST \
--url https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getExternalAccount \
--header 'content-type: application/json' \
--data '
{
"clientID": "someClientID",
"developerAPIKey": "someDeveloperAPIKey",
"accountId": "A12345",
"types": "Account"
}
'
Parameter | Type | Description |
---|
statusCode | string | API Status Code |
accountId | string | Account ID generated by the API |
statusDesc | string | API Status Description |
{
"statusCode":"101",
"accountId":"A1543842",
"statusDesc":{
"AccountName":"Test Account Name",
"AccountNickName":
"Plaid Saving - America First Credit Union",
"AccountRoutingNumber":"021531323",
"AccountNumber":"1111222233331111",
"accountType":"Savings",
"updatedDate":"0000-00-00 00:00:00",
"createdDate":"2022-10-26 23:10:39"}}