Retrieve the list of users belonging to the company associated with the authenticated API key.
cURL
curl --request GET \ --url https://api.sevalla.com/v3/users \ --header 'Authorization: Bearer <token>'
{ "data": [ { "id": "fb5e5168-4281-4bec-94c5-0d1584e9e657", "email": "user@example.com", "image": "https://avatars.githubusercontent.com/u/12345", "full_name": "John Doe" } ] }
API key authentication. Pass your API key as a Bearer token in the Authorization header.
Default Response
List of company users
Show child attributes
Was this page helpful?