Skip to main content
PATCH
/
users
/
{id}
Update a user
curl --request PATCH \
  --url https://incoming.qomon.app/users/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "data": {
    "mail": "jsmith@example.com",
    "address": "<string>",
    "avatar": "<string>",
    "birthdate": "2023-11-07T05:31:56Z",
    "city": "<string>",
    "firstname": "<string>",
    "location": "<string>",
    "phone": "<string>",
    "postal": "<string>",
    "surname": "<string>"
  }
}
'
{
  "data": "<string>",
  "status": "<string>"
}

Authorizations

Authorization
string
header
required

OAuth2 access token. Pass the token in the Authorization header as Bearer <token>. The token is looked up in Redis to resolve the caller identity.

Path Parameters

id
integer<int64>
required

User ID.

Required range: x >= 0
Example:

111

Body

application/json
data
object
required

Response

OK

data
string
required

Result message.

Example:

"OK"

status
string
required

Operation result.

Example:

"success"

Last modified on June 16, 2026