Skip to main content
Version: Next

Update client roles for a user in a realm using a client ID

PUT 

https://demo.openremote.io/api/master/user/:realm/userRoles/:userId/:clientId

Update client roles for a user in a realm using a client ID

Request

Path Parameters

    realm stringrequired
    userId stringrequired
    clientId stringrequired

Header Parameters

    Authorization string
    X-Forwarded-Proto string
    X-Forwarded-Host string

Body array

  • Array [
  • idstring
    namestring
    descriptionstring
    compositeboolean
    assignedboolean
    compositeRoleIdsstring[]
  • ]

Responses

default response

Schema

Authorization: oauth2

name: openidtype: oauth2flows: {
  "clientCredentials": {
    "tokenUrl": "/auth/realms/master/protocol/openid-connect/token",
    "refreshUrl": "/auth/realms/master/protocol/openid-connect/token",
    "scopes": {
      "profile": "profile"
    }
  },
  "authorizationCode": {
    "authorizationUrl": "/auth/realms/master/protocol/openid-connect/auth",
    "tokenUrl": "/auth/realms/master/protocol/openid-connect/token",
    "refreshUrl": "/auth/realms/master/protocol/openid-connect/token",
    "scopes": {
      "profile": "profile"
    }
  }
}
curl -L -X PUT 'https://demo.openremote.io/api/master/user/:realm/userRoles/:userId/:clientId' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <token>' \
-d '[
{
"id": "string",
"name": "string",
"description": "string",
"composite": true,
"assigned": true,
"compositeRoleIds": [
"string"
]
}
]'
Request Collapse all
Base URL
https://demo.openremote.io/api/master
Auth
Parameters
— pathrequired
— pathrequired
— pathrequired
— header
— header
— header
Body
[
  {
    "id": "string",
    "name": "string",
    "description": "string",
    "composite": true,
    "assigned": true,
    "compositeRoleIds": [
      "string"
    ]
  }
]
ResponseClear

Click the Send API Request button above and see the response here!