getIssuer

This method is used to get information about an issuer. You will need to specify the Issuer ID as a request parameter to get the issuer 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/getIssuer
-d developerAPIKey=somedeveloperkey
-d clientID=someclientid
-d issuerId=652683

Response Parameters

ParameterTypeDescription
statusCodestringAPI Status Code
statusDescstringAPI Status Description
issuerDetailsstringArray of issuer details includes all information of the matched issuers (issuerId, issuerName, firstName, lastName, email, phoneNumber, issuerStatus)

Sample Response

{
  "statusCode": "101",
  "statusDesc": "Ok",
  "issuerDetails": [
    {
      "issuerId": "96763",
      "issuerName": "EphronSys",
      "firstName": "Ephron",
      "lastName": "Sys",
      "email": "[email protected]",
      "phoneNumber": null,
      "issuerStatus": "Pending"
    }
  ]
}

Test it Yourself!

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