Parameter | Required | Type | Description |
---|---|---|---|
clientID | yes | string | Transact API Client ID |
developerAPIKey | yes | string | Transact API 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 / Saving. By default Checking |
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
Parameter | Type | Description |
---|---|---|
statusCode | string | statusCode |
statusDesc | string | statusDesc |
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 / Saving. By default Checking |
{ "statusCode": "101", "statusDesc": "Ok", "accountDetails": [ true, [{ "accountId": "5705166", "ExtAccountfullname": "John", "Extnickname": "John account", "ExtRoutingnumber": "34543534", "ExtAccountnumber": "1234567890", "accountType": "Checking", "types": "Account" }] ] }