Deregister KPIs for Devices
delete
/{versionId}/performance/devices/kpis
Use a comma-separated query parameter to deregister KPIs for devices.
Request
Path Parameters
Query Parameters
Back to Top
Response
202 Response
Accepted
400 Response
The user input is invalid.
401 Response
The session ID is invalid.
404 Response
The object (resource URI, device, and so on) of your input request cannot be found.
Examples
Examples of Accessing the API
See Authenticate for how to acquire a session cookie.
The following example shows how to deregister key performance indicators (KPIs) for devices using curl.
curl -X DELETE \
--header "Accept: application/xml" \
--header "Authorization: Bearer $TOKEN" \
"https://example.com:8443/rest/{versionId}/performance/devices/kpis?devices=ID10"
The following example shows how to deregister key performance indicators (KPIs) for devices using Python.
import requests
from lxml import etree
url = "https://example.com:8443/rest/{versionId}/performance/devices/kpis?devices=ID10"
headers = { "Accept":"application/xml", "Cookie":cookie }
resp = requests.delete(url, headers=headers)
Example of the Response Body
This endpoint does not return a response body.