View Work Request History

You can retrieve a list of work requests, by submitting the following GET request:

HTTP Method

GET

Base URL

http://<app-deployment-name>/workRequest/list

Content-Type

application/json

Response Example

The successful action returns a 200 OK response with the following response body.

By default, the results are returned in descending order of the timeStamp of the events.

[
    {
        "uuid": "<uuid>",
        "requestType": "reset",
        "status": "CONFIRMED",
        "requestInfo": null,
        "createdBy": "<user_name>",
        "createdAt": "2023-06-21T07:08:13.139083Z",
        "updatedBy": null,
        "lastUpdatedAt": "2023-06-21T07:10:15.963169Z",
        "confirm": null,
        "cancel": null
    },
    {
        "uuid": "<uuid>",
        "requestType": "restart",
        "status": "COMPLETED",
        "requestInfo": null,
        "createdBy": "<user_name>",
        "createdAt": "2023-06-21T00:23:43.872502Z",
        "updatedBy": null,
        "lastUpdatedAt": "2023-06-21T00:24:15.346324Z",
        "confirm": null,
        "cancel": null
    },
    {
        "uuid": "<uuid>",
        "requestType": "clone",
        "status": "CANCELLED",
        "requestInfo": "{<request_information>}",
        "createdBy": "<user_name>",
        "createdAt": "2023-06-21T00:23:43.266624Z",
        "updatedBy": null,
        "lastUpdatedAt": "2023-06-21T00:23:43.536548Z",
        "confirm": null,
        "cancel": null
    },
    {
        "uuid": "<uuid>",
        "requestType": "clone",
        "status": "COMPLETED",
        "requestInfo": "{<request_information>}",
        "createdBy": "<user_name>",
        "createdAt": "2023-06-20T23:38:41.601573Z",
        "updatedBy": null,
        "lastUpdatedAt": "2023-06-21T00:22:00.000462Z",
        "confirm": null,
        "cancel": null
    },
    {
        "uuid": "<uuid>",
        "requestType": "deletecheckpoint",
        "status": "COMPLETED",
        "requestInfo": "{<request_information>}",
        "createdBy": "<user_name>",
        "createdAt": "2023-06-20T23:23:40.579787Z",
        "updatedBy": null,
        "lastUpdatedAt": "2023-06-20T23:23:41.063989Z",
        "confirm": null,
        "cancel": null
    },
    {
        "uuid": "<uuid>",
        "requestType": "checkpoint",
        "status": "COMPLETED",
        "requestInfo": "{<request_information>}",
        "createdBy": "<user_name>",
        "createdAt": "2023-06-20T23:08:39.631971Z",
        "updatedBy": null,
        "lastUpdatedAt": "2023-06-20T23:22:57.051925Z",
        "confirm": null,
        "cancel": null
    },
    {
        "uuid": "<uuid>",
        "requestType": "reset",
        "status": "CANCELLED",
        "requestInfo": null,
        "createdBy": "<user_name>",
        "createdAt": "2023-06-20T23:08:39.133257Z",
        "updatedBy": null,
        "lastUpdatedAt": "2023-06-20T23:08:39.392141Z",
        "confirm": null,
        "cancel": null
    },

]