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"
}
]
}Retrieve the list of users belonging to the company associated with the authenticated API key.
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"
}
]
}Was this page helpful?