Skip to main content
PATCH
/
v1
/
users
/
{id}
Update a user
curl --request PATCH \
  --url https://revstack.dev/v1/users/{id} \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "role": "<string>",
  "isActive": true,
  "metadata": {}
}
'
null

Path Parameters

id
string
required
Example:

"usr_abc123"

Body

application/json
name
string
role
string
isActive
boolean
metadata
object

Response

200 - application/json

User updated

The response is of type unknown.