Returns list of users

GET /users

Responses

  • List of users

    Hide response attributes Show response attributes array[object]
    • id string Required

      The user's unique identifier

    • name string

      The user's preferred name

    • email string

      Email address

GET /users
curl \
 -X GET /users
Response examples (200)
[
  {
    "id": "string",
    "name": "string",
    "email": "string"
  }
]
Response examples (200)
[
  {
    "id": "string",
    "name": "string",
    "email": "string"
  }
]