get https://sandbox.belvo.com/investments/portfolios/
Get a paginated list of all the existing portfolios (and their instruments) 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 |
---|---|
created_at | gt , gte , lt , lte , range |
link | = , in |
# Filtering results so that you get the portfolios of one link:
https://sandbox.belvo.com/investments/portfolios/?link=89c91f42-df34-4c5d-a4f1-6e1e40438af4
// Filtering results so that you get the portfolios of one link:
client. investmentsPortfolios.list({
filters: {
link: "89c91f42-df34-4c5d-a4f1-6e1e40438af4"
}
})
# Filtering results so that you get the portfolios of one link:
client. InvestmentsPortfolios.list(link="89c91f42-df34-4c5d-a4f1-6e1e40438af4")
# Filtering results so that you get the portfolios of one link:
client. investments_portfolio.list(params: {
link: "89c91f42-df34-4c5d-a4f1-6e1e40438af4"
})