Users
Update the authenticated user's own profile (name fields)
Update the authenticated user's own profile (name fields)
patch/api/v1/users/me
Request body
Example request
{
"first_name": "John",
"last_name": "Doe"
}Response
Success
Example response
{
"success": true,
"data": {
"id": "123e4567-e89b-12d3-a456-426614174001",
"email": "user@example.com",
"first_name": "John",
"last_name": "Doe",
"updated_at": "2024-03-19T12:00:00Z"
}
}Changes
Changed in 2 of the 8 revisions of this API.11
- ○
endpoint added
endpoint-added
This revision also has 2 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ○
- ▲
api path removed without deprecation
api-path-removed-without-deprecation
This revision also has 367 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ▲