Tax Engine
  1. Exemptions
Tax Engine
  • Getting Started
    • Introduction to Sales Tax Calculation
    • Step By Step - Creating your first transaction
    • Step By Step - Creating VAT / Global Tax Transaction
  • Endpoints
    • Authentication
      • Authentication - Getting Started
      • Create JWT
    • Customers
      • Get to Know
      • Get Customer
      • Get All Customers
      • Upsert Customer
      • Update Customer
    • Exemptions
      • Get to Know
      • Get All Exemptions
        GET
      • Post Exemption
        POST
      • Update Exemption
        POST
      • Patch Exemption
        PATCH
    • Transactions
      • Get to Know
      • The Importance of Shipping Address
      • How to Use Credit Memos
      • Get Transaction (thin)
      • Get Transaction
      • Upsert Transaction
      • Delete Transaction
      • Get All Transactions (thin)
      • Get All Transactions
      • Upsert VAT / GT Transactio
    • Address Validation
      • Address Validation Intro
      • Validate Address
    • Sales Tax Rates
      • Get Sales Tax Rates
    • Vat Validation
      • Validate Vat
  • Special Features
    • Global Tax Rate
    • Partial Address
    • Discounts
    • Inclusive Tax
    • Vat Validation
    • Post exemptions from CSV
      POST
  • Schemas
    • Schemas
      • Item Response
      • Item Request
      • ExchangeRateInfo
      • shippingAddress Copy
      • transaction Copy
      • transaction (thin)
      • Item (thin)
      • SalesTaxRates (thin)
      • GtRates (thin)
      • ShippingFee (thin)
      • Address Response
      • SalesTaxRates Response
      • Referral
      • Partnership
      • internalTimestamps
      • externalTimestamps
      • ShippingFee
      • billingAddress
      • addressOfCustomer
      • timestamp
      • Certificate
      • Classification
      • Exemption
      • State
      • Status
      • TimestampsDto
      • validationDates
      • ClientTrackingDto
      • EconomicNexusTracker
      • NexusCalculationSummaryDto
      • NexusDto
      • NexusStateRuleDto
      • NexusThresholdDto
      • PhysicalNexusTracker
      • SalesTaxTracking
      • Customer
      • GtRates
      • Item
      • JurisdictionalSalesTaxRules
      • RatesMetaData
      • SalesTax
      • SalesTaxRates
      • SubJurisdictionalTaxRules
      • transaction Request
      • transaction Response
      • transaction
      • shippingAddress
  1. Exemptions

Post Exemption

POST
/v2/exemptions

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/json

Examples

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://sandbox.complyt.io/v2/exemptions' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "exemption": {
        "customerId": "",
        "country": "Usa",
        "state": {
            "abbreviation": "CO",
            "code": "06",
            "name": "Colorado"
        },
        "classification": {
            "code": "code",
            "description": "description"
        },
        "validationDates": {
            "fromDate": "1984-11-01T02:00:00",
            "toDate": "2050-11-01T02:00:00"
        },
        "status": {
            "code": "code",
            "name": "name"
        },
        "certificate": {
            "certificateId": "id",
            "url": "url",
            "name": "name"
        },
        "exemptionType": "FULLY",
        "exemptionStatus": "ACTIVE"
    },
    "states": [
        {
            "abbreviation": "CO",
            "code": "06",
            "name": "Colorado"
        }
    ]
}'
Response Response Example
{}
Modified at 2025-08-29 14:28:46
Previous
Get All Exemptions
Next
Update Exemption
Built with