GET
/prime/webui/License/EulaLicensing
Get EULA licensing
Get EULA licensing. Use this to fetch data.
curl example
curl -X GET 'https://<host>/prime/webui/License/EulaLicensing' \
-H 'Authorization: Bearer <token>'
OpenAPI spec
"get": {
"tags": [
"License"
],
"summary": "Get EULA licensing",
"responses": {
"200": {
"description": "Success"
}
}
}
GET
/prime/webui/License/PrimeFilesDetails
Get HAC -1 files details
Get HAC -1 files details. Use this to fetch data.
curl example
curl -X GET 'https://<host>/prime/webui/License/PrimeFilesDetails' \
-H 'Authorization: Bearer <token>'
OpenAPI spec
"get": {
"tags": [
"License"
],
"summary": "Get HAC -1 files details",
"responses": {
"200": {
"description": "Success"
94
}
}
}
GET
/prime/webui/License/PrimeLicensing
Get HAC -1 licensing
Get HAC -1 licensing. Use this to fetch data.
curl example
curl -X GET 'https://<host>/prime/webui/License/PrimeLicensing' \
-H 'Authorization: Bearer <token>'
OpenAPI spec
"get": {
"tags": [
"License"
],
"summary": "Get HAC -1 licensing",
"responses": {
"200": {
"description": "Success"
}
}
}
GET
/prime/webui/License/NetLicensing
Get NET licensing
Get NET licensing. Use this to fetch data.
curl example
curl -X GET 'https://<host>/prime/webui/License/NetLicensing' \
-H 'Authorization: Bearer <token>'
OpenAPI spec
"get": {
"tags": [
"License"
],
"summary": "Get NET licensing",
"responses": {
"200": {
"description": "Success"
}
}
}
GET
/prime/webui/License/UsbLicensing
Get Usb Licensing
Get Usb Licensing. Use this to fetch data.
curl example
curl -X GET 'https://<host>/prime/webui/License/UsbLicensing' \
-H 'Authorization: Bearer <token>'
OpenAPI spec
"get": {
"tags": [
"License"
],
"summary": "Get Usb Licensing",
"responses": {
"200": {
95
"description": "Success"
}
}
}
POST
/prime/webui/License/SaveEulaLicensing
Save EULA licensing
Save EULA licensing. Use this to create data.
curl example
curl -X POST 'https://<host>/prime/webui/License/SaveEulaLicensing' \
-H 'Authorization: Bearer <token>' \
-H 'Content-Type: application/json' \
-d '{"$ref":"#/components/schemas/EulaLicenseViewResource"}'
OpenAPI spec
"post": {
"tags": [
"License"
],
"summary": "Save EULA licensing",
"requestBody": {
"content": {
"application/json -patch+json": {
"schema": {
"$ref": "#/components/schemas/EulaLicenseViewResource"
}
},
"application/json": {
"schema": {
"$ref": "#/components/schemas/EulaLicenseViewResource"
}
},
"text/json": {
"schema": {
"$ref": "#/components/schemas/EulaLicenseViewResource"
}
},
"application/*+json": {
"schema": {
"$ref": "#/components/schemas/EulaLicenseViewResource"
}
}
}
},
"responses": {
"200": {
"description": "Success"
}
}
}
POST
/prime/webui/License/UploadPrimeLicensing
Upload HAC -1 licensing
Upload HAC -1 licensing. Use this to create data.
curl example
curl -X POST 'https://<host>/prime/webui/License/UploadPrimeLicensing' \
-H 'Authorization: Bearer <token>' \
-H 'Content-Type: application/json' \
-d '{}'
OpenAPI spec
"post": {
96
"tags": [
"License"
],
"summary": "Upload HAC -1 licensing",
"requestBody": {
"content": {
"multipart/form -data": {
"schema": {
"type": "object",
"properties": {
"file": {
"type": "string",
"format": "binary",
"nullable": true
}
}
},
"encoding": {
"file": {
"style": "form"
}
}
}
}
},
"responses": {
"200": {
"description": "Success"
}
}
}