Skip to main content

patch update user dealerGroup authority


ApiScope: manage.user.write
API Scope Level: ServiceSubscriberScope
Path Parameters
    userUUID string required
    dealerGroupUUID string required
Request Body required
    authoritiesToAdd object[]
  • Array [
  • authority string
    description string
  • ]
  • authoritiesToRemove object[]
  • Array [
  • authority string
    description string
  • ]
Responses

OK


Schema
    errors object[]
  • Array [
  • errorCode int32
    errorTitle string
    errorMessage string
  • ]
  • warnings object[]
  • Array [
  • warningCode int32
    warningTitle string
    warningMessage string
  • ]
  • apiRequestId string
PATCH /v2/users/:userUUID/dealer-groups/:dealerGroupUUID/authorities:bulk-patch

Authorization

name: basicAuthtype: httpscheme: basic

Request

Base URL
/manage
Username
Password
userUUID — path required
dealerGroupUUID — path required
Body required
{
"authoritiesToAdd": [
{
"authority": "string",
"description": "string"
}
],
"authoritiesToRemove": [
{
"authority": "string",
"description": "string"
}
]
}
curl / cURL
curl -L -X GET '/manage' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json'