Skip to main content

Release License

Select

SaaS
Customer Managed

This operation releases a license from a client or an agent.

More_Details

Request Body required
  • licensesInfo object[]
  • platformType integer
  • license object
  • licenseType integer
  • appType integer
  • licenseName string
  • clientEntity object
  • clientId integer
Responses

OK


Schema
  • errorMessage string
  • errorCode integer
POST /client/license/release    

Authorization

type: apiKeyname: Authtokenin: header

Request

Click Edit to configure Base URL
https://CommandCenterHostName/commandcenter/api
Security Scheme
token
Body required

{
"licensesInfo": [
{
"platformType": 0,
"license": {
"licenseType": 0,
"appType": 0,
"licenseName": "string"
}
}
],
"clientEntity": {
"clientId": 0
}
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/Client/License/Release' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"licensesInfo": [
{
"platformType": 0,
"license": {
"licenseType": 0,
"appType": 0,
"licenseName": "string"
}
}
],
"clientEntity": {
"clientId": 0
}
}'