Skip to main content
GET
/
company
/
{id}
/
users
Get company users
curl --request GET \
  --url https://api.sevalla.com/v2/company/{id}/users \
  --header 'Authorization: Bearer <token>'
{
  "company": {
    "users": [
      {
        "user": {
          "id": "fb5e5168-4281-4bec-94c5-0d1584e9e657",
          "email": "user@example.com",
          "image": "https://avatars.githubusercontent.com/u/12345",
          "full_name": "John Doe"
        }
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

API key authentication. Pass your API key as a Bearer token in the Authorization header.

Path Parameters

id
string<uuid>
required

Company identifier

Example:

"fb5e5168-4281-4bec-94c5-0d1584e9e657"

Response

Default Response

company
object
required