Accounts

Endpoints for listing account information.

List accounts

This endpoint allows you to list all your accounts.

GET /accounts

Response

200 OK

When successful, returns a Paginated list of Account resources.

{
  "entries": [
    // items
  ],
  "metadata": {
    "current_page": 1,
    "per_page": 10,
    "total_entries": 1,
    "total_pages": 1
  }
}

401 Unauthorized

If the authorization token is not valid, it returns an unauthorized response.

{
  "error": "Unauthenticated"
}