You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I know it is possible to create a backfill an incident.
But I want it also visually in the bar with the color red. How can you do this?
Hey Bartbehage,
My name is Rafa with the Statuspage support.
To visually backfill an incident in Statuspage, you will need to use the Statuspage API to update the incident status. Here is an example of how to do this using cURL:
First, make sure you have the incident ID of the incident that you want to backfill. You can find the incident ID in the URL of the incident page, or by using the List Incidents API endpoint.
Next, use the Update an Incident API endpoint to update the incident status to "investigating." You will need to include the incident ID in the endpoint URL, and pass the status and backfill parameters in the request body. Here is an example of how to do this using cURL:
curl -X PATCH "https://api.statuspage.io/v1/pages/{page_id}/incidents/{incident_id}" \
-H "Authorization: OAuth {api_key}" \
-H "Content-Type: application/json" \
-d '{
"incident": {
"status": "investigating",
"backfill": true
}
}'
This will update the incident status to "investigating" and visually backfill the incident in the status page timeline. The incident will appear in the timeline with a red bar to indicate that it is in progress.
Here is the API documentation API
I hope this helps! :)
Best
Rafa
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.