patch https://api.bigpanda.io/resources/v1.0/schedules/
Updates an existing alert filter schedule.
Renamed API
The Alert Filter Schedules API was previously called Schedules V1. The functionality of the API has not changed, but the name has been updated to clarify which BigPanda feature the API manages.
Authentication
All BigPanda APIs require Bearer Token Authorization in the call headers.
This API uses the Org Token type of Authorization token.
Sample Call
curl --request GET \
--url https://api.bigpanda.io/resources/v1.0/schedules/019823571032f242g6 \
--header 'Content-Type: application/merge-patch+json; charset=utf-8' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <ORG TOKEN>' \
--data '{
"name": "Weekend Maintenance",
"starts_on": 1491265491,
"ends_on": 1491294307,
"active": true
}
'
curl --request GET \
--url https://eu-api.bigpanda.io/resources/v1.0/schedules/019823571032f242g6 \
--header 'Content-Type: application/merge-patch+json; charset=utf-8' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <ORG TOKEN>' \
--data '{
"name": "Weekend Maintenance",
"starts_on": 1491265491,
"ends_on": 1491294307,
"active": true
}
'