PATCH
/
users
/
{id}
Update user
curl --request PATCH \
  --url http:localhost:3000/v2/users/{id} \
  --header 'Content-Type: application/json' \
  --header 'x-API-Key: <api-key>' \
  --data '{}'
{
  "_id": "<string>"
}

Authorizations

x-API-Key
string
header
required

Path Parameters

id
string<objectid>
required

User ID to update

Body

application/json · object

User data to update (partial update supported)

Response

200
application/json

User updated successfully

The response is of type object.