put https://api.bigpanda.io/resources/v2.0/environments//incidents//snooze
Place an incident in the snooze state
Authentication
All BigPanda APIs require Bearer Token Authorization in the call headers.
This API uses the User API Key type of Authorization token.
Sample Call
curl --request PUT \
--url https://api.bigpanda.io/resources/v2.0/environments/{environment_id}/incidents/{incident_id}/snooze \
--header 'Authorization: Bearer <User API Key>' \
--header 'Content-Type: application/json' \
--data '{
"comment": "a comment",
"end_time": 1638212314,
"cancel_on_incident_updates": true
}'
curl --request PUT \
--url https://eu-api.bigpanda.io/resources/v2.0/environments/{environment_id}/incidents/{incident_id}/snooze \
--header 'Authorization: Bearer <User API Key>' \
--header 'Content-Type: application/json' \
--data '{
"comment": "a comment",
"end_time": 1638212314,
"cancel_on_incident_updates": true
}'