Skip to main content
GET
/
managed_accounts
Get all managed accounts
curl --request GET \
  --url https://api.vantage.sh/v2/managed_accounts \
  --header 'Authorization: Bearer <token>'
{
  "links": {
    "self": "https://api.vantage.sh/v2/managed_accounts",
    "first": "https://api.vantage.sh/v2/managed_accounts?page=1",
    "next": null,
    "last": "https://api.vantage.sh/v2/managed_accounts?page=1",
    "prev": null
  },
  "managed_accounts": [
    {
      "token": "acct_be30cfd09cf0b3c5",
      "name": "Rep. Gavin Berge",
      "contact_email": "[email protected]",
      "parent_account_token": "acct_f95654a3aefab4b7",
      "access_credential_tokens": []
    }
  ]
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Query Parameters

page
integer<int32>

The page of results to return.

limit
integer<int32>

The amount of results to return. The maximum is 1000.

Response

200 - application/json

ManagedAccounts model

managed_accounts
object[]