Skip to main content

UpdateCompanyLaptopAdmins

Select

SaaS
Customer Managed

Update a company's laptop admins.

Path Parameters
  • companyId string required
Request Body

List of users or user groups and operation type

  • laptopAdmins object[]

    List of laptop admins (users or user groups)

  • id int32
  • name string
  • type string
  • operationType UpdateOperationType

    Possible values: [OVERWRITE, ADD, DELETE, CLEAR]

Responses

OK


Schema
  • error object
  • errorMessage string
  • errorCode int32
PUT /v4/company/:companyid/laptopadmins    

Authorization

type: apiKeyname: Authtokenin: header

Request

Click Edit to configure Base URL
https://CommandCenterHostName/commandcenter/api
Security Scheme
token
companyId — path required
Body
{
"laptopAdmins": [
{
"id": 0,
"name": "string",
"type": "string"
}
],
"operationType": "OVERWRITE"
}
curl -L -X PUT 'https://CommandCenterHostName/commandcenter/api/V4/Company/:companyId/LaptopAdmins' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"laptopAdmins": [
{
"id": 0,
"name": "string",
"type": "string"
}
],
"operationType": "OVERWRITE"
}'