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"
}Update provided fields for the user with the corresponding ID. The user’s email address is mandatory and must be valid.
💡 To change the
selected_group_idit is mandatory to setUpdateTokento true.
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.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
user id
111
The new values of the user.
Show child attributes
Was this page helpful?