Responses

  • 200 application/json

    A JSON array of user objects

    Hide response attributes Show response attributes object
    • id string

      The user ID.

    • name string Required

      The user's name.

    • email string Required

      The user's email address.

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