Skip to main content
PATCH
/
users
/
{id}
Update a user with the given informations.
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",
    "surname": "DohnJoe",
    "firstname": "John",
    "phone": "0123456789",
    "address": "1 rue de la paix",
    "city": "Paris",
    "postal": "75000",
    "location": "1.826483,-1.549486",
    "avatar": "http://example.com/image.png",
    "birthdate": "1999-03-06T23:00:00Z"
  }
}
'
{
  "status": "success",
  "data": "Successfully updated"
}

Documentation Index

Fetch the complete documentation index at: https://qomon-86428773.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
integer<uint>
required

user id

Example:

111

Body

application/json

The new values of the user.

data
object
required

Response

OK

status
string
Example:

"success"

data
string
Example:

"Successfully updated"

Last modified on May 19, 2026