Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Old URL

New URL

Comment

POST /report/create

POST /reports

Creates a new report.

POST /report/update

PUT /reports/{reportId}

Updates report with matching reportId.

POST /report/count

POST /reports/count

Returns number of existing reports.

GET /report/list

GET /reports

Returns a list of all reports.

GET /report/list/{page}/{size}

GET /reports?page={page}&size={size}

Returns a list of reports according to pagination.

GET /report/execution/list

GET /reports/executions

Returns a list of all execution reports.

GET /report/reportletConfClasses

GET /reports/reportletConfClasses

Returns a list of all reportletConfClasses.

GET /report/read/{reportId}

GET /reports/{reportId}

Returns report with matching reportId.

GET /report/execution/read/{executionId}

GET /reports/executions/{executionId}

Returns execution report.

GET /report/execution/export/{executionId}?fmt={format}

GET /reports/executions/{executionId}?format={format} (Accept: application/octet-stream)

Returns execution report as an downloadable file. Format is optional.

POST /report/execute/{reportId}

POST /reports/{reportId}/execute

Executes report.

GET /report/delete/{reportId}

DELETE /reports/{reportId}

Deletes report with matching id.

GET /report/execution/delete/{executionId}

DELETE /reports/executions/{executionId}

Deletes execution report with matching id.

Resource Service

Old URL

New URL

Comment

POST /resource/create

POST /resources

Creates a new resource.

POST /resource/update

PUT /resources/{resourceName}

Updates resource with matching resourceName.

HTTP operation is changed to PUT, because method is idempotent.

GET /resource/delete/{resourceName}

DELETE /resources/{resourceName}

Deletes resource with specified resourceName.

HTTP operation is changed to DELETE, because GET operation must be safe.

GET /resource/read/{resourceName}

GET /resources/{resourceName}

Returns a resource with specified name.

GET /resource/propagationActionsClasses

GET /resources/propagationActionsClasses

Returns a list of classes with type PROPAGATION_ACTIONS.

Actually method is used only in context of resources, therefore it is grouped to resources.

GET /resource/list

GET /resources

Returns a list of all resources.

There is optional matrix parameter: connInstanceId.

GET /resource/{resourceName}/read/{type}/{objectId}

GET {resourceName}/{type}/{objectId}

Returns specified connector object.

POST /resource/check

POST /resources/validate

Verifies connection using resource connector parameters.

HTTP operation can be changed to GET if resource is always created previously