Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Update for current /list workaround in TaskService

...

Old URL

New URL

Comment

POST /task/create/sync

POST /tasks

Creates a new sync task.

GET /task/sync/list

GET /tasks/sync/list

Returns a list of sync tasks.

GET /task/sync/list/{page}/{size}

GET /tasks/sync?page={page}&size={size}

Returns a list of paginated sync tasks.

GET /task/sync/count

GET /tasks/sync/count

Returns number of sync tasks.

POST /task/update/sync

PUT /tasks/{taskId}

Updates sync task with matching id.

GET /task/sync/execution/list

GET /tasks/sync/executions

Returns list of sync task executions.

Old URL

New URL

Comment

POST /task/create/sched

POST /tasks

Creates a new sched task.

GET /task/sched/list

GET /tasks/sched/list

Returns a list of sched tasks.

GET /task/sched/list/{page}/{size}

GET /tasks/sched?page={page}&size={size}

Returns a list of paginated sched tasks.

GET /task/sched/count

GET /tasks/sched/count

Returns number of sched tasks.

POST /task/update/sched

PUT /tasks/{taskId}

Updates sched task with matching id.

GET /task/sched/execution/list

GET /tasks/sched/executions

Returns list of sched task executions.

Old URL

New URL

Comment

GET /task/propagation/list

GET /tasks/propagation/list

Returns a list of propagation tasks.

GET /task/propagation/list/{page}/{size}

GET /tasks/propagation?page={page}&size={size}

Returns a list of paginated propagation tasks.

GET /task/propagation/count

GET /tasks/propagation/count

Returns number of propagation tasks.

GET /task/propagation/execution/list

GET /tasks/propagation/executions

Returns list of propagation task executions.

Old URL

New URL

Comment

GET /task/notification/list

GET /tasks/notification/list

Returns a list of notification tasks.

GET /task/notification/list/{page}/{size}

GET /tasks/notification?page={page}&size={size}

Returns a list of paginated notification tasks.

GET /task/notification/count

GET /tasks/notification/count

Returns number of notification tasks.

GET /task/notification/execution/list

GET /tasks/notification/executions

Returns list of notification task executions.

Old URL

New URL

Comment

GET /task/read/{taskId}

GET /tasks/{taskId}

Returns task with matching id.

GET /task/delete/{taskId}

DELETE /tasks/{taskId}

Deletes task with matching id.

GET /task/execution/read/{executionId}

GET /tasks/executions/{executionId}

Returns execution of task with matching id.

POST /task/execute/{taskId}?dryRun={dryRun}

POST /tasks/{taskId}/execute?dryRun={dryRun}

Executes task with matching id.

GET /task/execution/delete/{executionId}

DELETE /tasks/executions/{executionId}

Deletes execution of task with matching id.

GET /task/jobClasses

GET /tasks/jobClasses

Returns a list of available jobClasses.

GET /task/syncActionsClasses

GET /tasks/syncActionsClasses

Returns a list of available syncActionsClasses.

GET /task/execution/report/{executionId}
?executionStatus={executionStatus}&message={message}

POST /tasks/executions/{executionId}/report

Creates a new report for matching execution id.

...