GET
/
exemption-certificates
curl --request GET \
  --url https://base_url/api/v1/exemption-certificates \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "exemption_certificates": [
      {
        "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
      }
    ],
    "cursor": "<string>",
    "total_exemptions": 123
  },
  "message": "Successfully fetched exemption certificates."
}

Authorizations

Authorization
string
header
required

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

Query Parameters

customer_id
string
required

The unique identifier of the customer whose exemption certificate you want to fetch.

cursor
string

Cursor for pagination

limit
integer
default:
10

Number of items to return per page

Required range: 1 <= x <= 100

Response

200
application/json
Sales tax exemption certificate response.
data
object
message
string
Example:

"Successfully fetched exemption certificates."