GET
/
v1
/
users
Get User
curl --request GET \
  --url https://public.api.serval.com/v1/users \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "email": "<string>",
  "organizationId": "<string>"
}'
{
  "userId": "<string>",
  "firstName": "<string>",
  "lastName": "<string>",
  "email": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
email
string
required

The email address of the Serval user.

organizationId
string

The organization ID that the user belongs to.

Response

Success

userId
string

The ID of the Serval user.

firstName
string

The first name of the user.

lastName
string

The last name of the user.

email
string

The email address of the user.