Schedule Updates
Create Schedule Update
API Documentation
Components
Component Groups
Incident Updates
Incident Templates
Schedule Updates
Create Schedule Update
POST
/
schedules
/
{schedule}
/
updates
Copy
curl --request POST \
--url http://localhost/api/schedules/{schedule}/updates \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"message": "<string>"
}'
Copy
{
"data": {
"id": "<string>",
"type": "updates",
"attributes": {
"id": "<string>",
"updateable_id": "<string>",
"updateable_type": "<string>",
"message": "<string>",
"status": {
"human": "<string>",
"value": "<string>"
},
"created": {
"human": "<string>",
"string": "<string>"
},
"updated": {
"human": "<string>",
"string": "<string>"
}
}
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
The schedule ID
Body
application/json
`CreateScheduleUpdateRequestData`
Response
200
application/json
`Update`
Available options:
updates
Copy
curl --request POST \
--url http://localhost/api/schedules/{schedule}/updates \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"message": "<string>"
}'
Copy
{
"data": {
"id": "<string>",
"type": "updates",
"attributes": {
"id": "<string>",
"updateable_id": "<string>",
"updateable_type": "<string>",
"message": "<string>",
"status": {
"human": "<string>",
"value": "<string>"
},
"created": {
"human": "<string>",
"string": "<string>"
},
"updated": {
"human": "<string>",
"string": "<string>"
}
}
}
}