Update current user profile
Developing
Updates the authenticated user profile.
Request
Add parameter in header X-Jicoo-Api-Key
Example:X-Jicoo-Api-Key: ********************
Request Code Samples
curl --location --request PATCH '/v1/users/me' \
--header 'X-Jicoo-Api-Key: <api-key>'
Responses
application/json
{
"data": {
"uid": "usr_123",
"name": "Jane Doe",
"email": "jane@example.com",
"givenName": "Jane",
"familyName": "Doe",
"profileImage": "https://example.com/avatar.png"
}
}
Modified at 2026-06-23 10:08:01