deleteExternalAccount

This method is used to delete a particular external bank account (createExternalAccount) that was created for an account (createAccount). The Account ID must be specified as a request parameter to delete the external account.

Request Parameters

ParameterRequiredTypeDescription
clientIDyesstringTransactAPI Client ID
developerAPIKeyyesstringTransactAPI Developer Key
typesyesstringAccount
accountIdyesstringAccount ID or Issuer ID that is generated by the API when an Account is created (createAccount).

Sample Request

curl --request POST \
     --url https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/deleteExternalAccount \
     --header 'content-type: application/json' \
     --data '
{
  "accountId": "A123456",
  "types": "Account",
  "clientID": "someClientID",
  "developerAPIKey": "someDeveloperAPIKey"
}
'

Response Parameters

ParameterTypeDescription
statusCodestringAPI Status Code
statusDescstringAPI Status Description
accountIdstringAccount ID
Ext_StatusstringExternal account status deleted or not

Sample Response

{
  "statusCode": "101",
  "statusDesc": "Ok",
  "Account External Account Details": [
    true,
    [
      {
        "accountId": "A123456",
        "Ext_status": "Deleted"
      }
    ]
  ]
}

Test it Yourself!

Language
Click Try It! to start a request and see the response here!