Parameter | Required | Type | Description |
---|---|---|---|
clientID | yes | string | Transact API Client ID |
developerAPIKey | yes | string | Transact API Developer Key |
searchKeyword | yes | string | Keyword to search. |
curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/searchIssuer -d developerAPIKey=somedeveloperkey -d clientID=someclientid -d searchKeyword=652683
Parameter | Type | Description |
---|---|---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
issuerDetails | string | Array of issuers includes all information of the matched issuers ( issuerId, issuerName, firstName, lastName, email, phoneNumber, issuerStatus ) |
{ "statusCode": "101", "statusDesc": "Ok", "issuerDetails": [ { "issuerId": "654312", "issuerName": "ncissuer", "firstName": "john", "lastName": "issLNhxN", "email": "ncissuer198@yopmail.com", "phoneNumber": "1234567890", "issuerStatus": "approved" } ] }