Tax Exemption
Create Tax Exemption Order
Create a new tax exemption order for the given entity.
Unique requestor identification in UUID format
Unique entity identification in UUID format
Type of the entity.
The type of the fsa
The amount to allocate for FSA (must be positive)
Date from which the allocation becomes valid (optional, it will be January 1st if not provided)
Date until which the allocation is valid (optional, must be December 31st if provided)
OK
POST /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-12-04",
"fsaValidUntil": "2025-12-04"
}OK
{
"taxExemptionOrderId": "123e4567-e89b-12d3-a456-426614174000"
}Update Tax Exemption Order
Update tax exemption order
Tax exemption order ID
Unique requestor identification in UUID format
The amount to allocate for FSA (must be positive)
Date until which the allocation is valid (optional, must be December 31st if provided)
Accepted
Bad Request
PATCH /taxes/tax-exemption-orders/{taxExemptionOrderId} 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: 44
{
"fsaAmount": 1,
"fsaValidUntil": "2025-12-04"
}No content
Get Tax Exemption Orders
Get a list of tax exemption orders
String value used for pagination
Maximum number of items to return
20Tax exemption order ID
Unique entity identification in UUID format
The status of the tax exemption order
OK
Bad Request
GET /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-12-04T15:59:40.705Z",
"modifiedOn": "2025-12-04T15:59:40.705Z",
"entityId": "123e4567-e89b-12d3-a456-426614174000",
"entityType": "NATURAL_PERSON",
"fsaType": "INDIVIDUAL",
"fsaAmount": 1,
"fsaValidFrom": "2025-12-04",
"fsaValidUntil": "2025-12-04"
}
],
"pagination": {
"cursor": "text",
"limit": 1
}
}Get Tax Exemption Order
Get tax exemption order
Tax exemption order ID
OK
Bad Request
Not Found
GET /taxes/tax-exemption-orders/{taxExemptionOrderId} HTTP/1.1
Host: tvda-api.platform-test.tradevest.ai
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
"taxExemptionOrderId": "123e4567-e89b-12d3-a456-426614174000",
"status": "RECEIVED",
"createdOn": "2025-12-04T15:59:40.705Z",
"modifiedOn": "2025-12-04T15:59:40.705Z",
"entityId": "123e4567-e89b-12d3-a456-426614174000",
"entityType": "NATURAL_PERSON",
"fsaType": "INDIVIDUAL",
"fsaAmount": 1,
"fsaValidFrom": "2025-12-04",
"fsaValidUntil": "2025-12-04"
}Last updated

