Responses

  • 200 application/json

    List of users

    Hide response attribute Show response attribute object
    • data array[object]
      Hide data attributes Show data attributes object
      • userId string(uuid)
      • firstName string
      • lastName string
      • email string(email)
      • role string
      • phone string
GET /users
curl \
 --request GET 'https://api.pairfon.com/users' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "data": [
    {
      "userId": "string",
      "firstName": "string",
      "lastName": "string",
      "email": "hello@example.com",
      "role": "string",
      "phone": "string"
    }
  ]
}