GET
/
exemption-certificates
/
{id}
curl --request GET \
  --url https://base_url/api/v1/exemption-certificates/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "expiring_at": "2023-12-25",
    "issued_at": "2023-12-25",
    "country": "US",
    "jurisdiction": "<string>",
    "status": "INVALID",
    "verification_status": "PENDING_VERIFICATION",
    "type": "PURPOSE_WHOLESALE",
    "customer_id": "<string>",
    "file_id": "<string>",
    "created_at": 1727284490
  },
  "message": "Successfully fetched exemption certificate."
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

The unique identifier of the exemption certificate to fetch.

Response

200
application/json
Get one exemption certificate response.
data
object
message
string
Example:

"Successfully fetched exemption certificate."