Skip to main content

Update

Update an existing user.

Endpoint

PUT /users/{id}

Path Parameters

ParameterTypeDescription
idstringUser ID

Request Body

{
"name": "John Updated",
"role": "user"
}

Response

{
"id": "usr_12345",
"name": "John Updated",
"email": "john@example.com",
"role": "user",
"updated_at": "2026-01-15T11:00:00Z"
}