searchIssuer

This method is used to search all created issuers using a keyword and will return all matches for that keyword.

Log in to see full request history

Request Parameters

ParameterRequiredTypeDescription
clientIDyesstringTransactAPI Client ID
developerAPIKeyyesstringTransactAPI Developer Key
searchKeywordyesstringKeyword to search

Sample Request

curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/searchIssuer -d developerAPIKey=somedeveloperkey -d clientID=someclientid -d searchKeyword=652683

Response Parameters

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

Sample Response

{
    "statusCode": "101",
    "statusDesc": "Ok",
    "issuerDetails": [
        {
            "issuerId": "654312",
            "issuerName": "ncissuer",
            "firstName": "john",
            "lastName": "issLNhxN",
            "email": "ncissuer198@yopmail.com",
            "phoneNumber": "1234567890",
            "issuerStatus": "approved"
        }
    ]
}

Test it Yourself!

Body Params
string
required
string
required
string
required
Language
Click Try It! to start a request and see the response here!