Query Operations on Site (v2.0)
POST/v2.0/api/tenants/:tenant_id/sites/:site_id/operations
Query all the details of the operation on site.
Request
Path Parameters
tenant_id stringrequired
The tenant ID.
site_id stringrequired
The site ID.
- application/json
Body
Details of the operations on site
action string
The specific operation/action performed on the site.
id string
The ID.
parameters string
The parameters of the operation.
Responses
- 200
- 400
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
action string
The specific operation/action performed on the site.
id string
The ID.
parameters string
The parameters of the operation.
{
"action": "string",
"id": "string",
"parameters": "string"
}
Bad Request
- application/json
- Schema
- Example (from schema)
- Example
Schema
- Array [
- ]
_error ErrorResponse[]
code string
The error code.
message string
The error message.
{
"_error": [
{
"code": "string",
"message": "string"
}
]
}
{
"value": {
"_error": [
{
"code": "SITE_NOT_FOUND"
},
{
"code": "COMMAND_NOT_SUPPORTED"
}
]
}
}
Loading...