Skip to main content

create a laptop

Select

SaaS
Customer Managed

Simplified API to create a laptop

Request Body
  • clientNames string[] required

    list of hostName of computers

  • os string required

    Possible values: [WINDOWS, UNIX_AND_MAC]

    the os type of computers

  • userName string required

    username required for authentication of jobs

  • password string required

    password (base64 encoded) required for authentication of jobs

Responses

Success


Schema
  • taskId int32
  • jobIds string[]
POST /v4/laptop    

Authorization

type: apiKeyname: Authtokenin: header

Request

Click Edit to configure Base URL
https://CommandCenterHostName/commandcenter/api
Security Scheme
token
Body
{
"clientNames": [
"string"
],
"os": "WINDOWS",
"userName": "string",
"password": "string"
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/V4/Laptop' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"clientNames": [
"string"
],
"os": "WINDOWS",
"userName": "string",
"password": "string"
}'