Platform Impact
Authorizations
AuthorizationstringRequired
Body
Incidents request JSON Body.
pageinteger · min: 1OptionalDefault:
Page number
1sizeinteger · min: 1 · max: 1000OptionalDefault:
Page size
400dataset_idsstring[]Optional
Dataset IDs (UUIDs from the Soda Cloud platform) to use as filter.
statusstringOptionalDefault:
String representing the status of issues you want to retrieve. Currently you can retrieve either:
- all 'resolved' issues or
- all 'unresolved' issues
unresolvedfrom_datetimestring · date-timeOptionalDefault:
ISO timestamp from which you want to retrieve incidents. Defaults to last 31 days.
2023-10-09T09:18:16.255021to_datetimestring · date-timeOptionalDefault:
ISO timestamp up to which you want to retrieve incidents. Defaults to today.
2023-11-09T09:18:16.255029Responses
200
Successful Response
application/json
Array of IncidentsData.
totalintegerRequired
pageintegerRequired
sizeintegerRequired
202
Successful request but no data was returned
application/json
422
Validation Error
application/json
post/impact/incidents
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?
