Skip to main content
Creates a new jurisdiction exemption for an existing exemption certificate.
exemption_certificate_id
string
required
The unique identifier of the exemption certificate.
country
string
required
ISO 3166-1 alpha-2 country code. Currently only “US” is supported.
state
string
required
ISO 3166-2 subdivision code (e.g., “CA” for California).
reason
string
required
The reason for the exemption. Valid values:
  • PURPOSE_RESALE
  • ENTITY_TYPE_NON_PROFIT
  • GOVERNMENT
  • MANUFACTURER
  • AGRICULTURAL
  • OTHER
identification_type
string
required
The type of identification for the exemption.
identification_number
string
required
The identification number for the exemption.
end_date
string
The end date of the exemption in ISO 8601 format (YYYY-MM-DD).
is_active
boolean
Whether the exemption is active. Defaults to true.
exemption
object
The created jurisdiction exemption.
{
  "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
  }'