curl --request GET \
--url https://base_url/api/v1/exemption-certificates \
--header 'Authorization: Bearer <token>'{
"data": {
"exemption_certificates": [
{
"customer_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"file_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"type": "SINGLE_STATE",
"verification_status": "<string>",
"exemption_certificate_number": "<string>",
"effective_date": "2023-12-25",
"created_at": 123,
"jurisdictions": [
{
"country": "<string>",
"state": "<string>",
"reason": "PURPOSE_RESALE",
"is_active": true,
"end_date": "2023-12-25",
"identification_type": "FEIN",
"identification_number": "<string>",
"is_expired": true,
"created_at": 123
}
]
}
],
"cursor": "<string>",
"total_exemptions": 123
},
"message": "Successfully fetched exemption certificates."
}Get a list of all exemption certificates.
curl --request GET \
--url https://base_url/api/v1/exemption-certificates \
--header 'Authorization: Bearer <token>'{
"data": {
"exemption_certificates": [
{
"customer_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"file_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"type": "SINGLE_STATE",
"verification_status": "<string>",
"exemption_certificate_number": "<string>",
"effective_date": "2023-12-25",
"created_at": 123,
"jurisdictions": [
{
"country": "<string>",
"state": "<string>",
"reason": "PURPOSE_RESALE",
"is_active": true,
"end_date": "2023-12-25",
"identification_type": "FEIN",
"identification_number": "<string>",
"is_expired": true,
"created_at": 123
}
]
}
],
"cursor": "<string>",
"total_exemptions": 123
},
"message": "Successfully fetched exemption certificates."
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The unique identifier of the customer whose exemption certificate you want to fetch.
Cursor for pagination
Number of items to return per page
1 <= x <= 100Sales tax exemption certificate response.
Show child attributes
Show child attributes
The unique identifier of the customer.
Identifier of the file to use as the exemption certificate.
Verification status of the exemption certificate.
The exemption certificate number.
ISO 8601 formatted date string indicating the effective date.
Timestamp in UTC when this exemption certificate was created.
List of jurisdictions where the exemption is applicable.
Show child attributes
ISO 3166-1 alpha-2 country code.
ISO 3166-2 subdivision code.
Enum representing the reason for the exemption.
PURPOSE_RESALE, ENTITY_TYPE_NONPROFIT, GOVERNMENT, MANUFACTURER, AGRICULTURAL, OTHER Indicates whether the exemption should be taken into account when performing tax calculations. When true, applicable transactions will be exempted from tax (unless the certificate is expired).
ISO 8601 formatted date string indicating the expiration date of this particular exemption. For multistate exemption certificates, the expiration date can be different in different states..
Enum representing the type of identification number used for the exemption. Federal EIN, Taxpayer Id Number, or Drivers License are common values for this field. "Other" is also accepted.
FEIN, TIN, DL, OTHER Identification number for the exemption.
Indicates if the exemption is expired.
Timestamp in UTC when this jurisdiction exemption was created.
Pagination cursor for the next set of results.
Total number of exemption certificates.
"Successfully fetched exemption certificates."