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

ParameterRequiredTypeDescription
clientIDyesstringTransactAPI Client ID
developerAPIKeyyesstringTransactAPI Developer Key
issuerIdyesstringIssuer 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

ParameterTypeDescription
statusCodestringAPI Status Code
statusDescstringAPI Status Description
issuerDetailsstringReturns 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"
    }
}

Test it Yourself!

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