Exemption Certificates
Create exemption certificate
Sales Tax API
Core Concepts
Corporations
Calculate
Transactions
- Tax Transactions
- POSTCreate a transaction
- GETGet transaction
- GETList transactions
- DELDelete transaction
- Refund Transactions
- Bulk Transaction Import
Nexus
Registrations
Products
Customers
Exemption Certificates
Exemption Certificates
Create exemption certificate
Create an exemption certificate for a customer
POST
/
exemption-certificates
curl --request POST \
--url https://base_url/api/v1/exemption-certificates \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"customer_id": "<string>",
"file_id": "<string>",
"effective_date": "2023-12-25",
"type": "SINGLE_STATE",
"exemption_certificate_number": "<string>",
"jurisdictions": [
{
"identification_type": "FEIN",
"identification_number": "<string>",
"country": "<string>",
"state": "<string>",
"reason": "PURPOSE_RESALE",
"end_date": "2023-12-25",
"is_active": true
}
]
}'
{
"data": {
"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
}
]
},
"message": "Successfully created exemption certificate."
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Response
200
application/json
Successful exemption certificate creation
The response is of type object
.
curl --request POST \
--url https://base_url/api/v1/exemption-certificates \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"customer_id": "<string>",
"file_id": "<string>",
"effective_date": "2023-12-25",
"type": "SINGLE_STATE",
"exemption_certificate_number": "<string>",
"jurisdictions": [
{
"identification_type": "FEIN",
"identification_number": "<string>",
"country": "<string>",
"state": "<string>",
"reason": "PURPOSE_RESALE",
"end_date": "2023-12-25",
"is_active": true
}
]
}'
{
"data": {
"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
}
]
},
"message": "Successfully created exemption certificate."
}