cURL
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" } ] }
Return all Users that the current API token has access to.
The access token received from the authorization server in the OAuth 2.0 flow.
The page of results to return.
The amount of results to return. The maximum is 1000.
Users model
Show child attributes