Overview
Thecreate_status_page_post tool creates a new post (incident or maintenance) on a status page. According to the PagerDuty API, all posts require starts_at, ends_at, and at least one update.
Parameters
The unique identifier of the status page on which to create the post.Example:
"PSTATUS1"The title of the post. This will be prominently displayed to status page viewers.Example:
"API Latency Issues"The type of post. Options:
incident- An unplanned service disruptionmaintenance- A planned maintenance window
"incident"The date and time when the post becomes effective. Required for both incident and maintenance posts.Example:
"2024-01-15T14:00:00Z"The date and time when the post is concluded. Required for both incident and maintenance posts.Example:
"2024-01-15T16:00:00Z"Reference to the status page (duplicate of status_page_id for API compatibility).Example:
{"id": "PSTATUS1", "type": "status_page"}List of post updates. At least one update is required when creating a post.
Response
Returns the created status page post object.The unique identifier of the created post
Always returns
"status_page_post"The type of post (incident or maintenance)
The title of the post
Reference to the status page
When the post becomes effective
When the post is concluded
List of post updates
Example Usage
Use Cases
- Communicate incidents - Inform customers about service disruptions
- Announce maintenance - Notify users of planned maintenance windows
- Transparency - Keep stakeholders informed of service status
- Reduce support load - Proactively communicate known issues
- Meet SLAs - Fulfill communication requirements during incidents
Complete Example
Important Notes
Before creating a post, you may want to:
- Use List Status Pages to get the status page ID
- Use list severities, statuses, and impacts tools to discover available options
- Verify the time zone and formatting of your timestamps
Related Tools
- Get Status Page Post - View post details
- Create Status Page Post Update - Add updates to the post
- List Status Pages - View available status pages