Concepts
Tasks
Tasks are conversations between users and agents that can be triggered, scheduled, and approved.
Listing Tasks
To list all tasks for a specific agent, use the list_tasks
method:
Python
Retrieving a Task
To retrieve a specific task, use the retrieve_task
method with the agent_id
and conversation_id
:
Python
Viewing Task Steps
To view the steps of a task, use the view_task_steps
method:
Python
Approving a Task
To approve a task, use the approve_task
method:
Python
Deleting a Task
To delete a task, use the delete_task
method:
Python
Triggering a Task
To trigger a task, use the trigger_task
method with a message:
Python
Rerunning a Task
To rerun a task, use the rerun_task
method:
Python
Scheduling an Action in a Task
To schedule an action in a task, use the schedule_action_in_task
method:
Python