Skip to main content
GET
/
users
Get all users
curl --request GET \
  --url https://api.vantage.sh/v2/users \
  --header 'Authorization: Bearer <token>'
{
  "links": {
    "self": "https://api.vantage.sh/v2/users",
    "first": "https://api.vantage.sh/v2/users?page=1",
    "next": null,
    "last": "https://api.vantage.sh/v2/users?page=1",
    "prev": null
  },
  "users": [
    {
      "token": "usr_aa5cce4180981299",
      "name": "Jeanice Bins",
      "email": "[email protected]",
      "role": "Owner",
      "last_seen_at": "2024-01-01"
    },
    {
      "token": "usr_2372916b9f9589e7",
      "name": "Otto Goyette",
      "email": "[email protected]",
      "role": "Owner",
      "last_seen_at": "2024-01-01"
    }
  ]
}

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

Users model

users
object[]