Creates a new jurisdiction exemption for an existing exemption certificate.
The unique identifier of the exemption certificate.
ISO 3166-1 alpha-2 country code. Currently only “US” is supported.
ISO 3166-2 subdivision code (e.g., “CA” for California).
The reason for the exemption. Valid values:
PURPOSE_RESALE
ENTITY_TYPE_NON_PROFIT
GOVERNMENT
MANUFACTURER
AGRICULTURAL
OTHER
The type of identification for the exemption.
The identification number for the exemption.
The end date of the exemption in ISO 8601 format (YYYY-MM-DD).
Whether the exemption is active. Defaults to true.
The created jurisdiction exemption.Show Jurisdiction exemption object
ISO 3166-1 alpha-2 country code.
ISO 3166-2 subdivision code.
The reason for the exemption.
The type of identification.
The identification number.
Whether the exemption is active.
Whether the exemption has expired.
The end date of the exemption.
Unix timestamp of when the exemption was created.
{
"message": "Successfully created exemption.",
"data": {
"country": "US",
"state": "CA",
"reason": "PURPOSE_RESALE",
"identification_type": "STATE_TAX_ID",
"identification_number": "12-3456789",
"is_active": true,
"is_expired": false,
"end_date": "2025-12-31",
"created_at": 1704067200
}
}
curl --request POST \
--url 'https://transaction-tax.api.in.commenda.io/api/v1/exemption-certificates/{exemption_certificate_id}/jurisdictions' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"country": "US",
"state": "CA",
"reason": "PURPOSE_RESALE",
"identification_type": "STATE_TAX_ID",
"identification_number": "12-3456789",
"end_date": "2025-12-31",
"is_active": true
}'