Update
Update an existing user.
Endpoint
PUT /users/{id}
Path Parameters
| Parameter | Type | Description |
|---|---|---|
| id | string | User 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"
}