Parameter | Required | Type | Description |
---|---|---|---|
clientID | yes | string | Transact API Client ID |
developerAPIKey | yes | string | Transact API Developer Key |
issuerId | yes | integer | Issuer ID that is generated by the API when an Issuer is created(createIssuer) |
curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getIssuer -d developerAPIKey=somedeveloperkey -d clientID=someclientid -d issuerId=652683
Parameter | Type | Description |
---|---|---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
issuerDetails | string | Array of issuer details includes all information of the matched issuers( issuerId, issuerName, firstName, lastName, email, phoneNumber, issuerStatus ) |
{ "statusCode": "101", "statusDesc": "Ok", "issuerDetails": [ { "issuerId": "96763", "issuerName": "EphronSys", "firstName": "Ephron", "lastName": "Sys", "email": "ephronprabhu@gmail.com", "phoneNumber": null, "issuerStatus": "Pending" } ] }