Tax Exemption
Get Tax Exemption Orders
Get a list of tax exemption orders
Authorizations
Query parameters
cursorstringOptional
String value used for pagination
limitinteger · min: 1RequiredDefault:
Maximum number of items to return
20taxExemptionOrderIdstring · uuidOptional
Tax exemption order ID
entityIdstring · uuidOptional
Unique entity identification in UUID format
statusstring · enumOptionalPossible values:
The status of the tax exemption order
Responses
200
OK
application/json
400
Bad Request
application/json
get
/taxes/tax-exemption-ordersGET /taxes/tax-exemption-orders?limit=20 HTTP/1.1
Host: tvda-api.platform-test.tradevest.ai
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
"data": [
{
"taxExemptionOrderId": "123e4567-e89b-12d3-a456-426614174000",
"status": "RECEIVED",
"createdOn": "2025-11-09T04:19:47.554Z",
"modifiedOn": "2025-11-09T04:19:47.554Z",
"entityId": "123e4567-e89b-12d3-a456-426614174000",
"entityType": "NATURAL_PERSON",
"fsaType": "INDIVIDUAL",
"fsaAmount": 1,
"fsaValidFrom": "2025-11-09",
"fsaValidUntil": "2025-11-09"
}
],
"pagination": {
"cursor": "text",
"limit": 1
}
}Create Tax Exemption Order
Create a new tax exemption order for the given entity.
Authorizations
Header parameters
Requestor-IDstring · uuidRequired
Unique requestor identification in UUID format
Body
entityIdstring · uuidRequired
Unique entity identification in UUID format
entityTypestring · enumRequiredPossible values:
Type of the entity.
fsaTypestring · enumRequiredPossible values:
The type of the fsa
fsaAmountnumber · decimalRequired
The amount to allocate for FSA (must be positive)
fsaValidFromstring · dateOptional
Date from which the allocation becomes valid (optional, it will be January 1st if not provided)
fsaValidUntilstring · dateOptional
Date until which the allocation is valid (optional, must be December 31st if provided)
Responses
200
OK
application/json
post
/taxes/tax-exemption-ordersPOST /taxes/tax-exemption-orders HTTP/1.1
Host: tvda-api.platform-test.tradevest.ai
Authorization: Bearer YOUR_OAUTH2_TOKEN
Requestor-ID: 123e4567-e89b-12d3-a456-426614174000
Content-Type: application/json
Accept: */*
Content-Length: 175
{
"entityId": "123e4567-e89b-12d3-a456-426614174000",
"entityType": "NATURAL_PERSON",
"fsaType": "INDIVIDUAL",
"fsaAmount": 1,
"fsaValidFrom": "2025-11-09",
"fsaValidUntil": "2025-11-09"
}200
OK
{
"taxExemptionOrderId": "123e4567-e89b-12d3-a456-426614174000"
}Last updated

