get https://sandbox.belvo.com/api/tax-status/
Get a paginated list of all existing tax status 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 |
id | = , in |
link | = , in |
# Filtering results so that you get institutions from just one link:
https://api.belvo.com/api/institutions/?link=link
// Filtering results so that you get institutions from just one link:
client.taxstatus.list({
filters: {
link: "link_id"
}
})
# Filtering results so that you get institutions from just one link:
client.TaxStatus.list(link="link")
# Filtering results so that you get institutions from just one link:
client.tax_status.list(params: {
link: "link"
})