get https://sandbox.belvo.com/api/incomes/
Get a paginated list of all incomes in your Belvo account. By default, 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 |
---|---|
account | = , in |
created_at | gt , gte , lt , lte , range |
id | = , in |
# Filtering results to have incomes from one link:
https://sandbox.belvo.com/api/incomes/?link=link-id
# Filtering results to have incomes from one link and from two of their accounts:
https://sandbox.belvo.com/api/incomes/?link=link-id&account__in=account-id1,account-id2
// Filtering results to have incomes from one link:
client.incomes.list({
filters: {
link: "link-id"
}
})
// Filtering results to have incomes from one link and from two of their accounts:
client.incomes.list({
filters: {
link: "link-id",
account__in: "account-id1,account-id2"
}
})
# Filtering results to have incomes from one link:
client.Incomes.list(link="link-id")
# Filtering results to have incomes from one link and from two of their accounts:
client.Incomes.list(link="link-id", account__in="account-id1,account-id2")
# Filtering results to have incomes from one link:
client.incomes.list(params: {
link: "link-id"
})
# Filtering results to have incomes from one link and from two of their accounts:
client.incomes.list(params: {
link: "link-id",
account__in: "account-id1,account-id2"
})