Overview
AlertEvents
AlertGroups
AlertRoutingRules
AlertUrgencies
AlertSources
Alerts
Audits
Authorizations
CatalogEntities
CatalogEntityProperties
CatalogFields
Catalogs
[DEPRECATED] CustomFieldOptions
[DEPRECATED] CustomFields
CustomForms
DashboardPanels
Dashboards
Environments
EscalationPolicies
EscalationLevelsPolicies
EscalationLevelsPath
EscalationLevels
EscalationPaths
FormFieldOptions
FormFieldPlacementConditions
FormFieldPlacements
FormFieldPositions
FormFields
FormSetConditions
FormSets
Functionalities
WorkflowTasks
[DEPRECATED] WorkflowCustomFieldSelections
WorkflowFormFieldConditions
WorkflowGroups
WorkflowRuns
Workflows
Heartbeats
IncidentActionItems
[DEPRECATED] IncidentCustomFieldSelections
IncidentEventFunctionalities
IncidentEventServices
IncidentEvents
IncidentFeedbacks
IncidentFormFieldSelections
IncidentPermissionSetBooleans
IncidentPermissionSetResources
IncidentPermissionSets
IncidentRetrospectives
IncidentRetrospectiveSteps
IncidentRoleTasks
IncidentRoles
IncidentStatusPageEvents
IncidentSubStatuses
IncidentTypes
Incidents
- GETList incidents
- POSTCreates an incident
- GETRetrieves an incident
- PUTUpdate an incident
- DELDelete an incident
- PUTMitigate an incident
- PUTResolve an incident
- PUTCancel an incident
- PUTTriage an incident
- PUTRestart an incident
- PUTMark an incident as a duplicate
- POSTAdd subscribers to incident
- DELRemove subscribers from incident
- POSTAssign user to incident
- DELRemove assigned user from incident
IpRanges
LiveCallRouters
OnCallRoles
OnCallShadows
OverrideShifts
PlaybookTasks
Playbooks
RetrospectiveTemplates
RetrospectiveConfigurations
RetrospectiveProcessGroupSteps
RetrospectiveProcessGroups
RetrospectiveProcesses
RetrospectiveSteps
ScheduleRotationActiveDays
ScheduleRotationUsers
ScheduleRotations
Schedules
Services
Severities
StatusPageTemplates
StatusPages
SubStatuses
Teams
UserNotificationRules
WebhooksDeliveries
PlaybookTasks
Update a playbook task
PlaybookTasks
Update a playbook task
Update a specific playbook task by id
PUT
/
v1
/
playbook_tasks
/
{id}
curl --request PUT \
--url https://api.rootly.com/v1/playbook_tasks/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "playbook_tasks",
"attributes": {
"task": "<string>",
"description": "<string>",
"position": 123
}
}
}'
{
"data": {
"id": "3bf4c648-29f4-43ed-9953-9ed14022c947",
"type": "playbook_tasks",
"attributes": {
"playbook_id": "7ee598c8-a02d-4bc4-94da-26bf0c80f4ef",
"task": "Task updated",
"description": "Task description updated",
"position": 2,
"created_at": "2025-03-28T23:03:45.568-07:00",
"updated_at": "2025-03-28T23:03:47.529-07:00"
}
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Body
application/vnd.api+json
Response
200
application/vnd.api+json
playbook_task updated
Unique ID of the task
Available options:
playbook_tasks
The task of the task
Date of creation
Date of last update
The description of task
The position of the task
Was this page helpful?
curl --request PUT \
--url https://api.rootly.com/v1/playbook_tasks/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "playbook_tasks",
"attributes": {
"task": "<string>",
"description": "<string>",
"position": 123
}
}
}'
{
"data": {
"id": "3bf4c648-29f4-43ed-9953-9ed14022c947",
"type": "playbook_tasks",
"attributes": {
"playbook_id": "7ee598c8-a02d-4bc4-94da-26bf0c80f4ef",
"task": "Task updated",
"description": "Task description updated",
"position": 2,
"created_at": "2025-03-28T23:03:45.568-07:00",
"updated_at": "2025-03-28T23:03:47.529-07:00"
}
}
}