post https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/updateExternalAccount
This method is used to update fields related to a particular external account for an Account (createAccount). The Account ID must be specified as a request parameter to update the record.
Request Parameters
Parameter | Required | Type | Description |
---|---|---|---|
clientID | yes | string | TransactAPI Client ID |
developerAPIKey | yes | string | TransactAPI Developer Key |
ExtAccountfullname | yes | string | Account Holder Full Name or Issuer Account Holder Full Name |
Extnickname | yes | string | Nickname for the external account |
types | yes | string | Is this for an account or issuer account? |
accountId / issuerId | yes | string | Account ID or Issuer ID that is generated by the API when an Account(createAccount) or Issuer(createIssuer) is created. |
ExtRoutingnumber | yes | integer | External Bank Account - Routing Number |
ExtAccountnumber | yes | integer | External Bank Account - Account Number |
updatedIpAddress | no | string | IP Address of the updateExternalAccount method call |
accountType | no | string | Account type Checking / Savings. By default Checking |
Sample Request
curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/updateExternalAccount
-d developerAPIKey=somedeveloperkey
-d clientID=someclientid
-d types=Account
-d accountid=A12345
-d ExtAccountfullname=John Abraham
-d Extnickname=John Nick
-d ExtRoutingnumber=34543534
-d ExtAccountnumber=1234567890
-d accountType=Checking
-d updatedIpAddress=10.0.0.115
Response Parameters
Parameter | Type | Description |
---|---|---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
accountId / issuerId | string | Account ID or Issuer ID that is generated by the API when an Account(createAccount) or Issuer(createIssuer) is created. |
ExtAccountfullname | string | Account Holder Full Name or Issuer Account Holder Full Name |
Extnickname | string | Nickname for the External Account |
ExtRoutingNumber | integer | External Bank Account - Routing Number |
ExtAccountnumber | integer | External Bank Account - Account Number |
types | string | Is this for an Account or Issuer Account? |
accountType | string | Account type Checking / Savings. By default Checking |
Sample Response
{
"statusCode": "101",
"statusDesc": "Ok",
"accountDetails": [
true, [{
"accountId": "5705166",
"ExtAccountfullname": "John",
"Extnickname": "John account",
"ExtRoutingnumber": "34543534",
"ExtAccountnumber": "1234567890",
"accountType": "Checking",
"types": "Account"
}]
]
}