Endpoint
Authentication
This endpoint requires an OAuth access token. Send it as a bearer token:tasks:read
Query Parameters
External source IDs are assigned by whichever system created the task. This endpoint only reads them -
there is no API field for setting one.
Request Example
Response
Success Response
Status Code:200 OK
Response Fields
Task Object Fields
Each entry is a task object, the same shape returned by Get Task. See that page for the full field list, including thestep_runs and variables structures.
Error Responses
400 Bad Request
Returned when the access token has no user behind it.client_credentials tokens act as the admin who created the application, so this applies only to
tokens issued before application creators were recorded.
401 Unauthorized
Returned when the access token is missing, unknown, revoked, or expired, or when anX-API-Key was
sent instead of a bearer token. See OAuth error responses.
403 Forbidden
Returned when the token does not carry the required scope.422 Validation Error
Returned whenexternal_source_id is missing or empty.
429 Too Many Requests
Returned when your organization exceeds its per-minute request limit.500 Internal Server Error
Returned when the request fails due to a server error.Notes
An external source ID can match more than one task, so
tasks is always an array. A source ID with no
matching tasks returns an empty array rather than a 404.Only tasks the access token’s user is allowed to see are returned, so the same source ID can yield
different results for different users.
Use Cases
- Cross-system lookup - Jump from a record in your own system to its Chamelio tasks
- Deduplication - Check whether a record already produced a task before creating another
- Status embedding - Show Chamelio task status inside your own record view