SymetryML Documentation
Tasks

List tasks

List every Task registered for the customer, as `"name:type"` strings. This reflects only the persisted registration — it does not indicate whether a Task's process is currently running (see [Get task status](/docs/api-reference/tasks/tasks-taskid-get) for that).

GET
/{user}/tasks

List every Task registered for the customer, as "name:type" strings. This reflects only the persisted registration — it does not indicate whether a Task's process is currently running (see Get task status for that).

Authorization

SymetryMLAuth
AuthorizationBearer <token>

HMAC-SHA256 signature-based authentication: requests are signed with your secret key and sent with the Customer-ID, Sym-date, Authorization, Content-MD5 and sym-version headers. See SymetryML REST API Security for the signature algorithm and a complete example.

In: header

Path Parameters

user*string

User/Customer identifier

Response Body

application/json

curl -X GET "https://example.com/c1/tasks"

{  "statusCode": 200,  "statusString": "OK",  "values": {    "stringList": {      "values": [        "kstream_task_0:kafkastream-app",        "kstream_task_1:kafkastream-app"      ]    }  }}