Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Body
application/vnd.api+json
Response
incident_status_page_event created
Creates a new event from provided data
curl --request POST \
--url https://api.rootly.com/v1/incidents/{incident_id}/status-page-events \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "incident_status_page_events",
"attributes": {
"event": "<string>",
"status_page_id": "<string>",
"status": "investigating",
"notify_subscribers": false,
"should_tweet": false
}
}
}'
{
"data": {
"id": "ca9f0ff4-b29b-4b62-9de4-37c50b444c10",
"type": "incident_status_page_events",
"attributes": {
"incident_id": "ebb97521-8669-491c-8135-8b68ccbbf50e",
"status_page_id": "066f83c6-0e46-41ec-aeda-e4f0ba19f558",
"status": "investigating",
"notify_subscribers": true,
"should_tweet": false,
"started_at": "2025-10-08T04:37:27.968-07:00",
"created_at": "2025-10-08T04:37:27.968-07:00",
"updated_at": "2025-10-08T04:37:27.968-07:00",
"event": "New Event"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Show child attributes
incident_status_page_event created
Show child attributes
Was this page helpful?
curl --request POST \
--url https://api.rootly.com/v1/incidents/{incident_id}/status-page-events \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "incident_status_page_events",
"attributes": {
"event": "<string>",
"status_page_id": "<string>",
"status": "investigating",
"notify_subscribers": false,
"should_tweet": false
}
}
}'
{
"data": {
"id": "ca9f0ff4-b29b-4b62-9de4-37c50b444c10",
"type": "incident_status_page_events",
"attributes": {
"incident_id": "ebb97521-8669-491c-8135-8b68ccbbf50e",
"status_page_id": "066f83c6-0e46-41ec-aeda-e4f0ba19f558",
"status": "investigating",
"notify_subscribers": true,
"should_tweet": false,
"started_at": "2025-10-08T04:37:27.968-07:00",
"created_at": "2025-10-08T04:37:27.968-07:00",
"updated_at": "2025-10-08T04:37:27.968-07:00",
"event": "New Event"
}
}
}