Returns every update posted on an incident — both internal and public — in chronological order.
curl --request GET \
--url "https://api.scaling.cloud/v1/incidents/YOUR_INCIDENT_ID/updates" \
--header "Authorization: Bearer YOUR_API_KEY"
{
"data": {
"updates": [
{
"id": "0193e1a2-3b4c-7890-aaaa-000000000001",
"incidentId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"body": "We are investigating elevated error rates on the Payments API.",
"statusChange": null,
"visibility": "public",
"postedBy": { "id": "user_2b9a3d4e5f6g7h8j", "name": "Alice Chen" },
"postedAt": "2025-04-07T08:25:00.000Z",
"redactedAt": null,
"redactedBy": null
},
{
"id": "0193e1a2-3b4c-7890-aaaa-000000000002",
"incidentId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"body": "Rolled back deploy v3.14.2. Error rates back to baseline.",
"statusChange": "resolved",
"visibility": "public",
"postedBy": { "id": "user_2b9a3d4e5f6g7h8j", "name": "Alice Chen" },
"postedAt": "2025-04-07T09:14:00.000Z",
"redactedAt": null,
"redactedBy": null
}
]
}
}
Returns every update posted on an incident — bothDocumentation Index
Fetch the complete documentation index at: https://docs.scaling.cloud/llms.txt
Use this file to discover all available pages before exploring further.
internal and public — ordered by postedAt ascending. Redacted updates are included with body set to null and redactedAt / redactedBy populated; the row is never removed.
Hide properties
| Status | Code | Description |
|---|---|---|
401 | not_authorized | Missing or invalid credentials. |
404 | not_found | No incident with the given ID exists in your organization. |
500 | server_error | An unexpected error occurred on our side. |
curl --request GET \
--url "https://api.scaling.cloud/v1/incidents/YOUR_INCIDENT_ID/updates" \
--header "Authorization: Bearer YOUR_API_KEY"
{
"data": {
"updates": [
{
"id": "0193e1a2-3b4c-7890-aaaa-000000000001",
"incidentId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"body": "We are investigating elevated error rates on the Payments API.",
"statusChange": null,
"visibility": "public",
"postedBy": { "id": "user_2b9a3d4e5f6g7h8j", "name": "Alice Chen" },
"postedAt": "2025-04-07T08:25:00.000Z",
"redactedAt": null,
"redactedBy": null
},
{
"id": "0193e1a2-3b4c-7890-aaaa-000000000002",
"incidentId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"body": "Rolled back deploy v3.14.2. Error rates back to baseline.",
"statusChange": "resolved",
"visibility": "public",
"postedBy": { "id": "user_2b9a3d4e5f6g7h8j", "name": "Alice Chen" },
"postedAt": "2025-04-07T09:14:00.000Z",
"redactedAt": null,
"redactedBy": null
}
]
}
}
curl --request GET \
--url "https://api.scaling.cloud/v1/incidents/YOUR_INCIDENT_ID/updates" \
--header "Authorization: Bearer YOUR_API_KEY"
{
"data": {
"updates": [
{
"id": "0193e1a2-3b4c-7890-aaaa-000000000001",
"incidentId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"body": "We are investigating elevated error rates on the Payments API.",
"statusChange": null,
"visibility": "public",
"postedBy": { "id": "user_2b9a3d4e5f6g7h8j", "name": "Alice Chen" },
"postedAt": "2025-04-07T08:25:00.000Z",
"redactedAt": null,
"redactedBy": null
},
{
"id": "0193e1a2-3b4c-7890-aaaa-000000000002",
"incidentId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"body": "Rolled back deploy v3.14.2. Error rates back to baseline.",
"statusChange": "resolved",
"visibility": "public",
"postedBy": { "id": "user_2b9a3d4e5f6g7h8j", "name": "Alice Chen" },
"postedAt": "2025-04-07T09:14:00.000Z",
"redactedAt": null,
"redactedBy": null
}
]
}
}