List All Users

GET /v1/users

Responses

  • 200 application/json

    User Response

    Hide response attribute Show response attribute object
GET /v1/users
curl \
 -X GET http://localhost:4000/v1/users
Response examples (200)
{
  "data": [
    {
      "id": "<uuid v4>",
      "email": "dozent@traeger.de",
      "roles": [
        "lecturer"
      ],
      "lastName": "Dozentos",
      "firstName": "Daniel"
    },
    {
      "id": "<uuid v4>",
      "email": "dozent@traeger.de",
      "roles": [
        "lecturer"
      ],
      "lastName": "Dozentos",
      "firstName": "Daniel"
    }
  ]
}