post https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getIssuerAccount
This method is used to get information about the issuer account. You will need to specify the Issuer ID(createIssuer) as a request parameter to get the issuer account information.
Request Parameters
Parameter | Required | Type | Description |
---|---|---|---|
clientID | yes | string | TransactAPI Client ID |
developerAPIKey | yes | string | TransactAPI Developer Key |
issuerId | yes | string | Issuer ID that is generated by the API when an Issuer is created (createIssuer) |
Sample Request
curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getIssuerAccount
-d developerAPIKey=somedeveloperkey
-d clientID=someclientid
-d issuerId=564631
Response Parameters
Parameter | Type | Description |
---|---|---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
issuerDetails | string | Returns the issuer account details as an array |
Sample Response
{
"statusCode": "101",
"issuerId": "882512",
"Financial issuer details": [
{
"CustodianName": "Sample",
"CustodianAccountNumber": "363737398390",
"RoutingNumber": "63838030303",
"AccountNumber": "NC-882512",
"AccountName": "john smith",
"funds": "10000.00"
},
{
"CustodianName": "Testing",
"CustodianAccountNumber": "9868465646",
"RoutingNumber": "123456789",
"AccountNumber": "NC-882512",
"AccountName": "JOHN SMITH",
"funds": "4000.00"
}
],
"statusDesc": {
"issuerId": "882512",
"accountfirstName": JOHN,
"accountlastName": SMITH,
"accountType": "saving",
"companyName": "ephsys",
"companyState": "CA",
"entityType": "llc",
"companyTaxID": "7568567567",
"accountMiddleInitial": "M",
"socialSecurityNumber": "112-22-3333",
"dob": "02-28-1975",
"residentUS": "yes",
"citizenUS": "yes",
"addressLine1": PEACHTREE,
"addressLine2": "PALACE",
"city": ATLANTA,
"zip": 30318,
"country": "USA",
"issuingCountry": "USA",
"additionalInfo": "Issuer Text",
"issuerAccountStatus": "approved"
}
}