- Getting Started
- Endpoints
- Authentication
- Customers
- Exemptions
- Transactions
- Address Validation
- Sales Tax Rates
- Vat Validation
- Special Features
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