Skip to main content

Update multiple Users license for given DealerGroup and Product


ApiScope: manage.license.write
API Scope Level: ServiceSubscriberScope
Path Parameters
    dealerGroupUuid string required
    productUuid string required
Request Body required
    userUuids string[]
    action string

    Possible values: [ASSIGN, UNASSIGN, COUNT]

    requesterUserUuid string
    requesterAdminUserUuid string
Responses

OK


Schema
    errors object[]
  • Array [
  • errorCode int32
    errorTitle string
    errorMessage string
  • ]
  • warnings object[]
  • Array [
  • warningCode int32
    warningTitle string
    warningMessage string
  • ]
  • apiRequestId string
PUT /v2/license/dealerGroups/:dealerGroupUuid/products/:productUuid/users/bulk

Authorization

name: basicAuthtype: httpscheme: basic

Request

Base URL
/manage
Username
Password
dealerGroupUuid — path required
productUuid — path required
Body required
{
"userUuids": [
"string"
],
"action": "ASSIGN",
"requesterUserUuid": "string",
"requesterAdminUserUuid": "string"
}
Accept
curl / cURL
curl -L -X PUT '/manage/v2/license/dealerGroups/:dealerGroupUuid/products/:productUuid/users/bulk' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"userUuids": [
"string"
],
"action": "ASSIGN",
"requesterUserUuid": "string",
"requesterAdminUserUuid": "string"
}'