Complyt Docs
  1. Exemptions
Complyt Docs
  • 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
      • Create JWT - Partnerships
      • Get Partnerships
      • Upsert Client- Partnerships
      • Delete Client- Partnerships
    • 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
    • Files
      • Get All Files
      • Get One file - With signed link
      • Save file
      • Delete one file
    • 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
  1. Exemptions

Update Exemption

POST
/v1/exemptions
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/v1/exemptions' \
--header 'Content-Type: application/json' \
--data-raw '{
    "exemption": {
        "customerId": "{{customerComplytId}}",
        "country": "USA",
        "exemptionStatus": "ACTIVE",
        "state": {
            "abbreviation": "abbreviationPlaceHolder",
            "code": "codePlaceHolder",
            "name": "namePlaceHolder"
        },
        "classification": {
            "code": "code",
            "description": "description"
        },
        "validationDates": {
            "fromDate": "1990-01-01T03:40:59",
            "toDate": "2050-01-01T03:40:59"
        },
        "status": {
            "code": "code",
            "name": "name"
        },
        "certificate": {
            "certificateId": "id",
            "url": "url",
            "name": "name"
        },
        "exemptionType": "FULLY"
    },
    "states": [
        {
            "abbreviation": "AZ",
            "code": "04",
            "name": "Arizona"
        },
        {
            "abbreviation": "CA",
            "code": "04",
            "name": "California"
        },
        {
            "abbreviation": "NY",
            "code": "04",
            "name": "New York"
        }
    ]
}'
Response Response Example
{}

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/json
exemption
object 
required
customerId
string 
required
state
object 
required
classification
object 
required
validationDates
object 
required
status
object 
required
certificate
object 
required
exemptionType
string 
required
states
array [object {3}] 
required
abbreviation
string 
required
code
string 
required
name
string 
required
Examples

Responses

🟢200Success
application/json
Body
object {0}
Previous
Post Exemption
Next
Patch Exemption
Built with