Overview
Reference
- AlertEvents
- AlertGroups
- AlertUrgencies
- AlertSources
- Alerts
- Audits
- Authorizations
- CatalogEntities
- CatalogEntityProperties
- CatalogFields
- Catalogs
- Causes
- [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
- IpRanges
- LiveCallRouters
- OnCallRoles
- OnCallShadows
- OverrideShifts
- PlaybookTasks
- Playbooks
- RetrospectiveTemplates
- Pulses
- RetrospectiveConfigurations
- RetrospectiveProcessGroupSteps
- RetrospectiveProcessGroups
- RetrospectiveProcesses
- RetrospectiveSteps
- Roles
- ScheduleRotationActiveDays
- ScheduleRotationUsers
- ScheduleRotations
- Schedules
- Shifts
- Secrets
- Services
- Severities
- StatusPageTemplates
- StatusPages
- SubStatuses
- Teams
- UserNotificationRules
- Users
- WebhooksDeliveries
- WebhooksEndpoints
Retrieves a workflow task
Retrieves a specific workflow_task by id
curl --request GET \
--url https://api.rootly.com/v1/workflow_tasks/%7Bid%7D \
--header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
{
"data": {
"id": "e421e88b-34bc-47ca-bf3b-eed89470afae",
"type": "workflow_tasks",
"attributes": {
"workflow_id": "9da6de8c-bec2-4930-b8e1-5696233dd818",
"task_params": {
"task_type": "send_email",
"from": "Rootly <no-reply@rootly.com>",
"to": [
"aut"
],
"cc": [],
"bcc": [],
"subject": "Sapiente accusamus qui facilis.",
"preheader": null,
"body": "Fugiat facilis ea non.",
"include_header": true,
"include_footer": true,
"custom_logo_url": null
},
"name": "Send an email",
"position": 1,
"skip_on_failure": false,
"enabled": true,
"created_at": "2025-03-05T15:07:43.800-08:00",
"updated_at": "2025-03-05T15:07:43.800-08:00"
}
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
Unique ID of the workflow task
workflow_tasks
The ID of the parent workflow
The action item priority
high
, medium
, low
The action item summary
The action item status
open
, in_progress
, cancelled
, done
add_action_item
Attribute of the Incident to match against
jira_issue_id
Value that attribute_to_query_by to uses to match against
The role id this action item is associated with
[DEPRECATED] Use assigned_to_user attribute instead. The user id this action item is assigned to
The action item kind
The action item description
Custom field mappings. Can contain liquid markup and need to be valid JSON
The position of the workflow task
Skip workflow task if any failures
Enable/disable workflow task
Date of creation
Date of last update
Name of the workflow task
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/workflow_tasks/%7Bid%7D \
--header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
{
"data": {
"id": "e421e88b-34bc-47ca-bf3b-eed89470afae",
"type": "workflow_tasks",
"attributes": {
"workflow_id": "9da6de8c-bec2-4930-b8e1-5696233dd818",
"task_params": {
"task_type": "send_email",
"from": "Rootly <no-reply@rootly.com>",
"to": [
"aut"
],
"cc": [],
"bcc": [],
"subject": "Sapiente accusamus qui facilis.",
"preheader": null,
"body": "Fugiat facilis ea non.",
"include_header": true,
"include_footer": true,
"custom_logo_url": null
},
"name": "Send an email",
"position": 1,
"skip_on_failure": false,
"enabled": true,
"created_at": "2025-03-05T15:07:43.800-08:00",
"updated_at": "2025-03-05T15:07:43.800-08:00"
}
}
}