updateIssuerAccount

This method is used to update an existing issuer account. You will need to specify the Issuer ID(createIssuer) as a request parameter to update the issuer account information.

Request Parameters

ParameterRequiredTypeDescription
clientIDyesstringTransactAPI Client ID
developerAPIKeyyesstringTransactAPI Developer Key
issuerIdyesintegerIssuer ID that is generated by the API when an Issuer is created(createIssuer)
accountTypenostringType of account - CHECKING or SAVINGS
companyNameyesstringLegal name of the company
companyStateyesstringCompany's state of registration (Use two-letter state abbreviation)
entityTypenostringEntity Type ( LLC, LP, Corp, GP, Soleprop )
companyTaxIDnointegerCompany's employer tax ID, 9 digits with no hyphens
accountMiddleInitialnostringThe Issuer's middle initial
socialSecurityNumbernostringThe Issuer's SSN xxx-xx-xxxx
dobnostringThe Issuer's DOB (MM-DD-YYYY)
residentUSnoconditionalYes or No. Is the issuer a U.S. resident?
citizenUSnoconditionalYes or No. Is the issuer a U.S. citizen?
addressline1nostringThe Issuer's physical address, line 1
addressline2nostringThe Issuer's physical address, line 2
citynostringThe city of the Issuer's physical address
zipnostringThe zip code of the Issuer's physical address
countrynostringThe country of the Issuer's physical address
additionalInfonostringAdditional information regarding to the Issuer
providerIdnointegerCustodian ID
bankNamenostringName of the bank
bankRoutingNumbernointegerIssuer's routing number
accountNumbernointegerAccount number issued by the bank
updatedIpAddressyesintegerUpdated IP Address
issuingCountryyesstringThe Issuer's physical address, issuing country

Sample Request

curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/updateIssuerAccount 
-d developerAPIKey=somedeveloperkey 
-d clientID=someclientid 
-d issuerId=652683 
-d accountType=Checking 
-d companyName=Ephron 
-d companyState=GA 
-d entityType=gp 
-d companyTaxID=112-22-3333 
-d accountMiddleInitial=R 
-d socialSecurityNumber=112-22-3333 
-d dob=1987-05-05 
-d residentUS=yes 
-d citizenUS=yes 
-d addressline1=222333 PEACHTREE PLACE 
-d addressline2=SUITE 43 
-d city=ATLANTA 
-d zip=30318 
-d country=GA 
-d issuingCountry=GA 
-d additionalInfo=Text 
-d createdIpAddress=10.0.0.9

Response Parameters

ParameterTypeDescription
statusCodestringAPI Status Code
statusDescstringAPI Status Description
Financial Issuer DetailsstringReturns Success Response for an Issuer

Sample Response

{
  "statusCode": "101",
  "statusDesc": "Ok",
  "Financial issuer details": {
    "1": [
      {
        "issuerId": "882512"
      }
    ]
  }
}

Test it Yourself!

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