listExecutionStatusForScheduledOrderById

get

/ccstore/v1/scheduledOrders/status/{id}

List Execution Status For Scheduled Order By Id. It will list the execution status for a scheduled order . Optionally takes the X-CCOrganization header to specify current Organization context of logged in user.

Request

Supported Media Types
Path Parameters
Query Parameters
Header Parameters
Back to Top

Response

Supported Media Types

200 Response

Following model is returned when operation succeeds.
Body ()
Root Schema : listExecutionStatusForScheduledOrderById_response
Type: object
Show Source
Nested Schema : items
Type: array
The array of the Scheduled orders by the id.
Show Source
Nested Schema : items
Type: object
Show Source
Nested Schema : executionStatusList
Type: array
The status list of executed scheduled orders
Show Source
Nested Schema : items
Type: object
Show Source
Example Response (application/json)
{
    "total":1,
    "totalResults":1,
    "offset":0,
    "limit":250,
    "links":[
        {
            "rel":"self",
            "href":"http://localhost:9080/ccstoreui/v1/scheduledOrders/status/sco20002"
        }
    ],
    "items":[
        {
            "scheduledOrderId":"sco20002",
            "errorMessages":[
                "hi this is error"
            ],
            "orderId":"o40414",
            "repositoryId":"0001",
            "executionDate":"2016-12-08T00:00:00.000Z",
            "id":"0001",
            "orderSubmitted":false,
            "orderTotal":123
        }
    ]
}

Default Response

The error response
Body ()
Root Schema : errorModel
Type: object
Show Source
Nested Schema : errors
Type: array
An optional list of errors if multiple errors were encountered
Show Source
Nested Schema : items
Type: object
Show Source
Back to Top