post https://api.bigpanda.io/resources/v2.0/environments//incidents//split
Splits a list of alerts into a new BigPanda incident
Authentication
All BigPanda APIs require Bearer Token Authorization in the call headers.
This API uses the User API Key type of Authorization token.
- Split actions are heavy asynchronous operations and will have a small delay before being reflected in your data.
- BigPanda will automatically prevent duplicate split requests. Multiple consecutive attempts to split the same alerts from an incident will result in an error.
Sample Call
curl --request POST \
--url https://api.bigpanda.io/resources/v2.0/environments/{environment_id}/incidents/{incident_id}/split \
--header 'Authorization: Bearer <User API Key>'
--header 'Content-Type: application/json' \
--data '{
"comment": "<comment text>",
"alerts": ["5d09d221aebaec1c43ccd448", "5cff623a21169351a82cb5e2"]
}'
curl --request POST \
--url https://eu-api.bigpanda.io/resources/v2.0/environments/{environment_id}/incidents/{incident_id}/split \
--header 'Authorization: Bearer <User API Key>'
--header 'Content-Type: application/json' \
--data '{
"comment": "<comment text>",
"alerts": ["5d09d221aebaec1c43ccd448", "5cff623a21169351a82cb5e2"]
}'