Authentication
warning
The Tasklist REST API is deprecated. While it continues to function, new development should use the Orchestration Cluster REST API by referencing the Orchestration Cluster REST API migration documentation.
Tasklist uses the same authentication mechanism as the Orchestration Cluster REST API.
If your environment uses OIDC-based authentication, obtain an access token following Using a token (OIDC/JWT).
If no authentication is configured (for example, for local development), see No authentication (local development).
When making requests to Tasklist, replace the base URL used in examples with your Tasklist API URL.
Example:
curl -X GET "$TASKLIST_BASE_URL/v1/tasks" \
-H "Authorization: Bearer $ACCESS_TOKEN"
A successful response returns matching task objects.