curl --request POST \
--url https://api.getenso.ai/contracts/{contractId}/taxes \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"taxes": [
"tax_1",
"tax_2"
]
}
'{
"status": "success",
"message": "Success",
"data": {}
}Attach tax registrations to a contract. Body: { taxes: ["tax_id", ...] }
curl --request POST \
--url https://api.getenso.ai/contracts/{contractId}/taxes \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"taxes": [
"tax_1",
"tax_2"
]
}
'{
"status": "success",
"message": "Success",
"data": {}
}JWT bearer token obtained from POST /auth/system-login using your client credentials.
Contract ID
["tax_1", "tax_2"]