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

ParameterRequiredTypeDescription
clientIDyesstringTransactAPI Client ID
developerAPIKeyyesstringTransactAPI Developer Key
ExtAccountfullnameyesstringAccount Holder Full Name or Issuer Account Holder Full Name
ExtnicknameyesstringNickname for the external account
typesyesstringIs this for an account or issuer account?
accountId / issuerIdyesstringAccount ID or Issuer ID that is generated by the API when an Account(createAccount) or Issuer(createIssuer) is created.
ExtRoutingnumberyesintegerExternal Bank Account - Routing Number
ExtAccountnumberyesintegerExternal Bank Account - Account Number
updatedIpAddressnostringIP Address of the updateExternalAccount method call
accountTypenostringAccount 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

ParameterTypeDescription
statusCodestringAPI Status Code
statusDescstringAPI Status Description
accountId / issuerIdstringAccount ID or Issuer ID that is generated by the API when an Account(createAccount) or Issuer(createIssuer) is created.
ExtAccountfullnamestringAccount Holder Full Name or Issuer Account Holder Full Name
ExtnicknamestringNickname for the External Account
ExtRoutingNumberintegerExternal Bank Account - Routing Number
ExtAccountnumberintegerExternal Bank Account - Account Number
typesstringIs this for an Account or Issuer Account?
accountTypestringAccount 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"
		}]
	]
}

Test it Yourself!

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