Tax retentions (Webhooks)
Reference information for our Tax retention webhook events.
Historical update
As soon as your fiscal link is created, we asynchronously load the last one year of tax retentions and will send you the following webhook:
Webhook Code | Description |
---|---|
historical_update | The last one year of Tax Retentions. |
In the webhook payload we include the total number of tax retentions found for the last year, along with the date range that we retrieved data for.
{
"webhook_id": "03d1ca0d62db4f769488265d141047b7",
"webhook_type": "TAX_RETENTIONS",
"process_type": "historical_update",
"webhook_code": "historical_update",
"link_id": "2f5d361d-dad6-45d4-a0bf-26d479766067",
"request_id": "4363b08b-51eb-4350-9c74-5df5ac92a7f6",
"external_id": "your_external_id",
"data": {
"total_tax_retentions": 1, // The total number of tax retentions
"first_tax_retention_date": "2023-06-01", // The date of the first tax retention found
"last_tax_retention_date": "2023-08-20" // The date of the last tax retention found
}
}
Once you receive the notification, you can get further details by making the following request:
curl --request GET \
-u [Secret Key ID]:[Secret Key PASSWORD] \
'https://api.belvo.com/api/tax-retentions/?link=link_id'
Query Parameter | Description | Example |
---|---|---|
link | The link_id you received in the webhook notification. | 2f5d361d-dad6-45d4-a0bf-26d479766067 |
For details about the response body, make sure to check out our List Tax Retentions API reference documentation or Tax Retentions Data Dictionary.
Updated about 1 month ago