API Docs
API Docs
  1. Exemptions
  • 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
  1. Exemptions

Patch Exemption

PATCH
/://{{host}}/v1/exemptions/complytId/2aa5809f-301d-44f3-9081-b4f32613463c

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/json
classification
object 
required
code
string 
required
description
string 
required
state
object 
required
abbreviation
string 
required
code
string 
required
name
string 
required
Example
{
  "classification": {
    "code": "C3S1",
    "description": "some description"
  },
  "state": {
    "abbreviation": "NY",
    "code": "033",
    "name": "NEW YORrrK"
  }
}

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request PATCH 'https://sandbox.complyt.io/://{{host}}/v1/exemptions/complytId/2aa5809f-301d-44f3-9081-b4f32613463c' \
--header 'Content-Type: application/json' \
--data-raw '{
    "classification": {
        "code": "C3S1",
        "description": "some description"
    },
    "state": {
        "abbreviation": "NY",
        "code": "033",
        "name": "NEW YORrrK"
    }
}'

Responses

🟢200Success
application/json
Body
object {0}
Example
{}
Modified at 2024-07-11 11:48:15
Previous
Update Exemption
Next
Get to Know
Built with