Loading API reference…
/organizations/{organizationId}/task-dependenciesOrganization identifier.
uuidCursor formatted as taskId:dependsOnTaskId.
Value in
Value in
uuiduuidValue in
application/json
application/json
curl -X GET "https://example.com/organizations/497f6eca-6276-4993-bfeb-53cbbbba6f08/task-dependencies"{ "success": true, "statusCode": 200, "message": "Task dependencies listed.", "data": [ { "organizationId": "7d4a6f1d-ff64-4a4f-9e8d-937bfaa0d2f1", "taskId": "b12e12e7-68df-4ba8-a72a-32eb80d60b64", "dependsOnTaskId": "0ce65ee0-dcd9-46c2-90a4-243f5d54dc66", "status": "pending", "required": true, "condition": { "kind": "artifact", "artifactKind": "tracking-contract" }, "failure": null, "createdAt": "2026-01-01T00:00:00.000Z", "satisfiedAt": null, "failedAt": null } ], "pagination": { "cursor": null, "limit": 50, "nextCursor": null, "previousCursor": null, "hasNextPage": false, "hasPreviousPage": false }, "meta": { "timestamp": "2026-01-01T00:00:00.000Z" }}{ "success": false, "statusCode": 400, "message": "Validation failed.", "error": { "code": "validation_failed", "issues": [ { "path": "organizationId", "message": "Must be a valid UUID.", "code": "invalid_format" } ] }, "meta": { "timestamp": "2026-01-01T00:00:00.000Z" }}/organizations/{organizationId}/task-dependencies/{taskId}/{dependsOnTaskId}Organization identifier.
uuidDependent task identifier.
uuidPrerequisite task identifier.
uuidapplication/json
application/json
application/json
curl -X GET "https://example.com/organizations/497f6eca-6276-4993-bfeb-53cbbbba6f08/task-dependencies/497f6eca-6276-4993-bfeb-53cbbbba6f08/497f6eca-6276-4993-bfeb-53cbbbba6f08"{ "success": true, "statusCode": 200, "message": "Task dependency found.", "data": { "organizationId": "7d4a6f1d-ff64-4a4f-9e8d-937bfaa0d2f1", "taskId": "b12e12e7-68df-4ba8-a72a-32eb80d60b64", "dependsOnTaskId": "0ce65ee0-dcd9-46c2-90a4-243f5d54dc66", "status": "pending", "required": true, "condition": { "kind": "artifact", "artifactKind": "tracking-contract" }, "failure": null, "createdAt": "2026-01-01T00:00:00.000Z", "satisfiedAt": null, "failedAt": null }, "meta": { "timestamp": "2026-01-01T00:00:00.000Z" }}{ "success": false, "statusCode": 400, "message": "Validation failed.", "error": { "code": "validation_failed", "issues": [ { "path": "organizationId", "message": "Must be a valid UUID.", "code": "invalid_format" } ] }, "meta": { "timestamp": "2026-01-01T00:00:00.000Z" }}{ "success": false, "statusCode": 404, "message": "Task dependency not found.", "error": { "code": "task_dependency_not_found" }, "meta": { "timestamp": "2026-01-01T00:00:00.000Z" }}