GET
/
users
curl --request GET \
  --url https://api.wirespeed.co/users \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "intercomId": "<string>",
  "createdAt": "<string>",
  "fullName": "<string>",
  "email": "<string>",
  "locked": true,
  "superAdmin": true,
  "activeTeamId": "<string>",
  "parentTeamId": "<string>",
  "completedOnboarding": true,
  "firstName": "<string>",
  "lastName": "<string>",
  "teamId": "<string>",
  "role": "ADMIN"
}

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

The response is of type object.