v1

latestSwagger 2.02026-07-17547.5 KB
User

Create user

Creates a new user

post/api/users

Request body

Example request

{
  "user": {
    "email": "joe@gmail.com",
    "id": 123,
    "name": "Joe"
  }
}

Response

User created OK

Example response

{
  "data": {
    "email": "joe@gmail.com",
    "id": 123,
    "name": "Joe"
  }
}