Overview
Thecreate_status_page_post_update tool adds a new update to an existing status page post. Use this to provide progress updates during an incident or maintenance window.
Parameters
The unique identifier of the status page.Example:
"PSTATUS1"The unique identifier of the status page post to update.Example:
"POST123"The message text for the update. This is what status page viewers will see.Example:
"The issue has been identified and a fix is being deployed"Status reference indicating the current state of the incident or maintenance.Common status IDs for incidents:
investigating- Initial response, investigating the issueidentified- Root cause has been identifiedmonitoring- Fix deployed, monitoring for stabilityresolved- Issue completely resolved
scheduled- Maintenance is scheduledin_progress- Maintenance is currently underwaycompleted- Maintenance has been completed
{"id": "identified", "type": "status_page_status"}Severity reference indicating the impact level.Common severity IDs:
none- No impactminor- Minor impactmajor- Major impactcritical- Critical impact
{"id": "major", "type": "status_page_severity"}Post reference (required by API).Example:
{"id": "POST123", "type": "status_page_post"}List of impacted services with their impact levels. Can be an empty array if no services are impacted or if impact hasn’t changed.Example:
Whether to notify subscribers of this update. Set to
true for important updates.Example: trueThe frequency of the next update in milliseconds. Use
null for no scheduled frequency.Example: 1800000 (30 minutes)The date and time when the update was reported. Defaults to now if not specified.Example:
"2024-01-15T14:30:00Z"Response
Returns the created post update object.The unique identifier of the created post update
Always returns
"status_page_post_update"The message text of the update
The status reference
The severity reference
Reference to the parent post
List of impacted services
Whether subscribers were notified
When the update was reported
Example Usage
Use Cases
- Progress updates - Keep customers informed during incident resolution
- Status changes - Communicate when moving from investigating to identified to resolved
- Transparency - Provide regular updates even if there’s no significant progress
- Resolution confirmation - Confirm when issues are fully resolved
- Maintenance progress - Update on maintenance completion status
Complete Example
Update Workflow Example
Important Notes
Best Practices:
- Update regularly during active incidents (every 30-60 minutes)
- Be specific about what actions are being taken
- Use appropriate status transitions (investigating → identified → monitoring → resolved)
- Notify subscribers for important status changes
- Include estimated time to resolution when known
Related Tools
- Get Status Page Post - View post and all updates
- Create Status Page Post - Create the initial post
- List Status Pages - View available status pages