API reference
V1Sequence Executions

Sequence Exectuion Task List

List all the sequence tasks created for an specific sequence based on an execution, with optional parameters to sort or filter

GET
/api/v1/executions/{sequence_execution_id}/tasks

List all the sequence tasks created for an specific sequence based on an execution, with optional parameters to sort or filter

Authorization

access_token
Authorization<token>

In: header

Path Parameters

sequence_execution_id*string

Sequence Exectuion ID

Query Parameters

page?integer

actual page of Sequence Executions

per_page?integer

number of Sequence Executions per page

order?string

order by 'field,order'

filter[daterange_from_to]?string

filter by creation date range

Value in

  • "today"
  • "yesterday"
  • "last_7_days"
  • "last_30_days"
  • "current_month"
  • "last_month"
  • "02/21/2024 19:56 - 02/28/2024 19:56"

Response Body

application/json

curl -X GET "https://example.com/api/v1/executions/string/tasks?page=1&per_page=20&order=id%2Cdesc"
{  "status": "ok",  "data": {    "pagination": {      "total_pages": 0,      "current_page": 0    },    "list": [      {        "id": "string",        "description": "string",        "actor": "string",        "status": false,        "start_line": 0,        "end_line": 0,        "created_at": "string",        "updated_at": "string",        "started_at": "string",        "finished_at": "string",        "duration": "string",        "user": {          "id": "abc123xyz",          "first_name": "John",          "last_name": "Doe",          "email": "john.doe@example.com",          "avatar": "https://lh3.googleusercontent.com/a/AAcHTtcLT_gPCblFHL0QKonMt4822u5qrtlsvvrm0aAC1LszcPg=s288-c-no",          "created_at": "06/29/2023 21:14:57",          "updated_at": "06/29/2023 21:14:57"        },        "team_role": {          "id": "string",          "team_id": "string",          "name": "QA",          "description": "The QA role involves rigorously testing and identifying bugs in software to ensure its overall quality and reliability.",          "created_at": "string",          "updated_at": "string"        }      }    ]  }}