get https://sandbox.belvo.com/api/tax-retentions/
Get a paginated list of all existing tax retentions in your Belvo account. We return up to 100 results per page.
🔦 Filterable fields
Please see the table below for an alphabetized list of fields that you can filter your responses by. For more information on how to use filters, see our Filtering responses article.
Field | Available Filters |
---|---|
created_at | gt , gte , lt , lte , range |
link | = , in |
# Filtering results so that you get Tax Retentions from one link:
https://sandbox.belvo.com/api/tax-retentions/?link=link-id
# Filtering results so that you get Tax Retentions from two links
https://api.belvo.com/api/tax-retentions/?link=link-id1,link-id2
// Filtering results so that you get the Tax Retentions from one link:
client.taxRetentions.list({
filters: {
link: "link-id"
}
})
// Filtering results so that you get the Tax Retentions from two links:
client.taxRetentions.list({
filters: {
link__in: "link-id-1, link-id-2"
}
})
# Filtering results so that you get the Tax Retentions from one link:
client.TaxRetentions.list(link="link-id")
# Filtering results so that you get the Tax Retentions from two links:
client.TaxRetentions.list(link__in="link-id1,link-id2")
# Filtering results so that you get the Tax Retentions from one link:
client.tax_retentions.list(params: {
link: "link-id"
})
# Filtering results so that you get the Tax Retentions from two link:
client.tax_retentions.list(params: {
link__in: "link-id1, link-id1"
})