Skip to main content
GET
/
v1
/
teams
/
{team_id}
/
tasks
/
{task_id}
/
executions
List Executions
curl --request GET \
  --url https://api.dataraven.io/v1/teams/{team_id}/tasks/{task_id}/executions \
  --header 'Authorization: Bearer <token>'
{
  "executions": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "task_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "execution_number": 123,
      "trigger": "manual",
      "status": "pending",
      "is_dry_run": true,
      "queued_at": "2023-11-07T05:31:56Z",
      "started_at": "2023-11-07T05:31:56Z",
      "completed_at": "2023-11-07T05:31:56Z",
      "duration_seconds": 123,
      "stats": {},
      "error_message": "<string>",
      "rclone_exit_code": 123,
      "log_file_url": "<string>"
    }
  ],
  "pagination": {
    "page": 123,
    "limit": 123,
    "total": 123,
    "total_pages": 123
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

task_id
string<uuid>
required
team_id
string<uuid>
required

Query Parameters

status_filter
enum<string> | null

Filter by execution status Runtime execution status.

Available options:
pending,
running,
completed,
failed,
cancelled,
dry_run_completed
page
integer
default:1

Page number (1-indexed)

Required range: x >= 1
limit
integer
default:50

Items per page

Required range: 1 <= x <= 100

Response

Successful Response

Response schema for listing executions with pagination.

executions
ExecutionResponse · object[]
required
pagination
PaginationResponse · object
required

Pagination metadata in responses.