Merge Incidents

Merges a list of BigPanda incidents into 1 incident

🚧

Authentication

All BigPanda APIs require Bearer Token Authorization in the call headers.

This API uses the User API Key type of Authorization token.

📘

  • Merge actions are heavy asynchronous operations and will have a small delay before being reflected in your data.
    • BigPanda will automatically prevent duplicate merge requests. Multiple consecutive attempts to merge the same incident with the same source_incidents will result in an error.

Sample Call

curl --request POST \
     --url https://api.bigpanda.io/resources/v2.0/environments/{environment_id}/incidents/{incident_id}/merge \
     --header 'Authorization: Bearer <User API Key>' \
     --header 'Content-Type: application/json' \
     --data '{
"source_incidents": [
"608ffd7aa912bc031f0ab0f1",
"608ab712fa71ee2824d009c0"
],
"comment": "<comment text>"
}'
curl --request POST \
     --url https://eu-api.bigpanda.io/resources/v2.0/environments/{environment_id}/incidents/{incident_id}/merge \
     --header 'Authorization: Bearer <User API Key>' \
     --header 'Content-Type: application/json' \
     --data '{
"source_incidents": [
"608ffd7aa912bc031f0ab0f1",
"608ab712fa71ee2824d009c0"
],
"comment": "<comment text>"
}'
Language