Skip to main content
GET
/
api
/
data-readiness
/
workflows
/
{configuration_id}
/
runs
/
{run_id}
/
tasks
List Tasks
curl --request GET \
  --url https://api.example.com/api/data-readiness/workflows/{configuration_id}/runs/{run_id}/tasks \
  --header 'Authorization: Bearer <token>'
{
  "pagination": {
    "page": 123,
    "per_page": 123,
    "total": 123,
    "total_pages": 123,
    "has_next": true,
    "has_prev": true
  },
  "data": [
    {
      "completed_at": "2024-01-15T10:31:00Z",
      "id": "123e4567-e89b-12d3-a456-426614174003",
      "name": "detect_pii",
      "run_id": "123e4567-e89b-12d3-a456-426614174002",
      "started_at": "2024-01-15T10:30:00Z",
      "status": "completed"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.emergence.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

JWT Bearer token authentication. Include the token in the Authorization header as: Authorization: Bearer <token>. The JWT must contain valid client_id, and project_id claims for tenant isolation and SDK routing.

Path Parameters

configuration_id
string<uuid>
required

Configuration ID

run_id
string<uuid>
required

Run ID

Query Parameters

page
integer
default:1

Page number (1-indexed)

Required range: x >= 1
per_page
integer
default:20

Items per page

Required range: 1 <= x <= 100
status
string | null

Filter by status

Response

Successful Response

Paginated list of tasks.

pagination
PaginationMeta · object
required

Pagination metadata

data
TaskListItem · object[]

List of task items