PUT
/
iam
/
clients
/
{clientId}
/
client-users
/
{userId}
curl --request PUT \
  --url https://api.gcore.com/iam/clients/{clientId}/client-users/{userId} \
  --header 'APIKey: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "user_role": {
    "id": 1,
    "name": "Administrators"
  }
}'
This response does not have an example.

Authorizations

APIKey
string
header
required

API key for authentication.

Path Parameters

userId
integer
required

User's ID.

clientId
integer
required

Account ID.

Body

application/json

User's group.

Response

204

The user's group has been successfully changed.