Count Work Orders By Status
GET/organizations/:organizationId/statistics/work-orders/status/:status
Count Work Orders By Status
Request
Path Parameters
organizationId stringrequired
The ID of organization.
status stringrequired
The status of work order.
Query Parameters
startDate numberrequired
The start date number of query
endDate numberrequired
The end date number of query
Responses
- 200
- 401
- 403
- 422
- application/json
- Schema
- Example (from schema)
- Example
Schema
data objectrequired
Work order status count statistics during the period.
statusName stringrequired
value numberrequired
{
"data": {
"statusName": "string",
"value": 0
}
}
{
"data": {
"statusName": "Open",
"value": 2
}
}
The request has not permission.
- application/json
- Schema
- Example (from schema)
- Example
Schema
error stringrequired
The request has not permission.
message stringrequired
The request has not permission message.
{
"error": "string",
"message": "string"
}
{
"error": "Unauthenticated",
"message": "Authentication is required and has failed or has not yet been provided."
}
The request has not permission.
- application/json
- Schema
- Example (from schema)
- Example
Schema
error stringrequired
The request has not permission.
message stringrequired
The request has not permission message.
{
"error": "string",
"message": "string"
}
{
"error": "Forbidden",
"message": "Access to the requested resource is forbidden."
}
The input data has invalid.
- application/json
- Schema
- Example (from schema)
- Example
Schema
error stringrequired
The input data has invalid.
message stringrequired
The input data has invalid message.
{
"error": "string",
"message": "string"
}
{
"error": "ValidationError",
"message": "Input data validation failed."
}
Loading...