Removing Manual Tag From The Devices
DELETE/pub/v4.0/tag
Removing manual tag from the devices.
Request
Query Parameters
customerid stringrequired
The customer ID to which the API call is directed
- application/json
Body
required
tag objectrequired
The tag object that will be removed from the devices
deviceidlist arrayrequired
The device list that won't have the tag. The limit of the device list is 50.
Responses
- 200
- 4XX
- 5XX
Successful Response
- application/json
- Schema
- Example (from schema)
- removingTagResponseExample
Schema
api string
The current API URI
removeSuccess string
To indicate whether the removing operation is success or not
{
"api": "string",
"removeSuccess": "string"
}
{
"api": "pub/v4.0/tag",
"removeSuccess": "yes"
}
Client Error Response
- application/json
- Schema
- Example (from schema)
- Bad Request
- Forbidden access
- Too many requests
Schema
code string
STATUS_CODE
msg string
GENERAL_MESSAGE
{
"code": "string",
"msg": "string"
}
{
"code": 400,
"msg": "Bad Request. This occurs when an HTTP request contains an invalid query string."
}
{
"code": 403,
"msg": "Forbidden access. Either the provided API key is invalid or it does not have the required RBAC permissions to run this API."
}
{
"code": 429,
"msg": "Too many requests. The number of requests for device details for a single device exceeded the rate limit of 180 queries per minute per tenant."
}
Server Error Response
- application/json
- Schema
- Example (from schema)
- removingTagResponseExample
Schema
code string
STATUS_CODE
msg string
GENERAL_MESSAGE
{
"code": "string",
"msg": "string"
}
{
"code": 500,
"msg": "Internal server error. A unified status for API communication type errors."
}
Loading...