Platform Impact
This endpoint provides a list of incidents (as well as basic information --see field definitions in the IncidentsData schema) per report date.
You can filter for specific incident statuses, datasets, and report dates. See IncidentsRequest schema for an exhaustive list of filter and aggregation options.
NOTE: In some rare cases, incidents are not attached to any monitors, in that case we cannot check wich dataset they are attached to. These incidents are therefore ignored from the output.
Usage
Use to build reports about the number of incidents at any given time on your Soda Cloud account.
Returns
An object of type IncidentsResult containing an array of IncidentsData.
Find details about the response objects in the Schemas section or by unfurling the response details.
Incidents request JSON Body.
Page number
1Page size
400Dataset IDs (UUIDs from the Soda Cloud platform) to use as filter.
String representing the status of issues you want to retrieve. Currently you can retrieve either:
- all 'resolved' issues or
- all 'unresolved' issues
unresolvedISO timestamp from which you want to retrieve incidents. Defaults to last 31 days.
2023-10-09T09:18:16.255021ISO timestamp up to which you want to retrieve incidents. Defaults to today.
2023-11-09T09:18:16.255029Successful Response
Array of IncidentsData.
Successful request but no data was returned
Validation Error
POST /v1/impact/incidents HTTP/1.1
Host: reporting.cloud.soda.io
Authorization: Basic username:password
Content-Type: application/json
Accept: */*
Content-Length: 154
{
"page": 1,
"size": 400,
"dataset_ids": [
"text"
],
"status": "unresolved",
"from_datetime": "2023-10-09T09:18:16.255021",
"to_datetime": "2023-11-09T09:18:16.255029"
}{
"total": 1,
"page": 1,
"size": 1,
"data": [
{
"incident_id_report_date_id": "text",
"incident_id": "text",
"organization_id": "text",
"created_at": "2026-01-01T00:00:00.000Z",
"last_updated": "2026-01-01T00:00:00.000Z",
"check_id": "text",
"check_result_id": "text",
"dataset_id": "text",
"title": "text",
"check_name": "text",
"severity": "text",
"description_notes": "text",
"resolution_notes": "text",
"lead_id": "text",
"lead_email": "text",
"reporter_id": "text",
"reporter_email": "text",
"report_date": "2026-01-01",
"resolved_at": "2026-01-01T00:00:00.000Z",
"status": "text"
}
]
}Last updated
Was this helpful?
