Skip to content

Retrieve list of executions using audienceId

Request

Retrieve a list of workflow executions, whether they were succesful or not, and their status.

Security
TdApikeyAuth
Path
audienceIdinteger, (int64)required

Master Segment Config id to delete

curl -i -X GET \
  'https://api-cdp.treasuredata.com/audiences/{audienceId}/executions' \
  -H 'Authorization: YOUR_API_KEY_HERE'

Responses

Succeeded to run the workflow

Bodyapplication/json
Array [
workflowIdstring[1-9][0-9]*|0required
workflowSessionIdstring[1-9][0-9]*required
createdAtstring, (date-time)required
finishedAtstring or null, (date-time)required
statusstringrequired
Enum:"success""canceled""error""canceling""blocked""queued""running"
workflowAttemptIdstring[1-9][0-9]*required
audienceIdstring, (integer)
]
Response
[ { "workflowId": "string", "workflowSessionId": "string", "createdAt": "2019-08-24T14:15:22Z", "finishedAt": "2019-08-24T14:15:22Z", "status": "success", "workflowAttemptId": "string", "audienceId": "string" } ]