GET
/
reporting
/
errors
curl --request GET \
  --url https://api.cloudcruise.com/reporting/errors
{
  "workflow_id": "<string>",
  "timeframe": {
    "start": "2023-11-07T05:31:56Z",
    "end": "2023-11-07T05:31:56Z"
  },
  "total_errors": 123,
  "error_groups": {}
}

Query Parameters

workflow_id
string
required

The ID of the workflow to get errors for

start_timestamp
string
required

Start of the time range for error reporting (ISO 8601 format, e.g., 2024-03-20T10:00:00Z)

Example:

"2024-03-20T10:00:00Z"

end_timestamp
string
required

End of the time range for error reporting (ISO 8601 format, e.g., 2024-03-20T11:00:00Z)

Example:

"2024-03-20T11:00:00Z"

Response

200
application/json

Error report successfully retrieved

The response is of type object.