Certificate#

Allows you to retrieve a list of certificates.

Endpoints:#


GET Certificate/GetHoldingCertificates#

Description:

Retrieves holding certificates for a given customer.

Query Parameters:

customerIssuerId
integer Required
Nullable
The unique identifier of the customer issuer.
customerShareholderId
string Optional
Non-nullable
The unique shareholder ID associated with the customer.
filterStatus
string Required
Non-nullable
Status used to filter certificates.

Example Request:

curl --silent --location '{{baseurl}}/api/v1/Certificate/GetHoldingCertificates?CustomerIssuerId=1&SystemControlIssuerId=1&CustomerShareholderId=example&SystemShareholderId=1&FilterStatus=All' \
--header 'Authorization: Bearer <YOUR TOKEN>'

200 Response:

{
    "controlCertificateId": 66634,
    "customerCertificateId": 9120982,
    "prefixAndCertificateNumber": "B-1112",
    "issued": "10/29/2018",
    "canceled": "",
    "security": "Common",
    "restriction": "No Restriction",
    "stop": "",
    "shares": 17,
    "postReverseSplit": true
}