Retrieve return requests

get

/ccstore/v1/orders/{id}/returnRequests

Retrieves all return requests for the specified order.

Prerequisite: The user must be logged in. See REST API Authentication.

Request

Supported Media Types
Path Parameters
Header Parameters
Back to Top

Response

Supported Media Types

200 Response

Returned when the operation succeeds.
Body ()
Root Schema : listReturnRequests_response
Type: object
Show Source
Nested Schema : items
Type: array
List of all return requests related to an order.
Show Source
Nested Schema : items
Type: object
Show Source
Nested Schema : additionalProperties
Type: object
Additional properties returned by return request validation webhook
Nested Schema : returnItems
Type: array
List of return items in the return request.
Show Source
Nested Schema : trackingNumber
Type: array
Tracking Number of return request
Show Source
Nested Schema : items
Type: object
Show Source
Nested Schema : additionalProperties
Type: object
Additional properties returned by return request validation webhook
Example Response (links)
[
    {
        "rel":"self",
        "href":"http://store.example.com/ccstoreui/v1/orders/o30411/returnRequests"
    }
]
Example Response (items)
[
    {
        "returnRequestId":"200002",
        "returnLabel":"a5445afg5",
        "isExchangeRequest":false,
        "authorizationNumber":"12345",
        "createdDate":"1513930292000",
        "returnItems":[
            {
                "quantityToReturn":"1",
                "productId":"Product_36Exy",
                "returnReason":"Did Not Like",
                "additionalProperties":{
                    "name2":"value2",
                    "name1":"value1"
                },
                "state":"AWAITING_RETURN",
                "catRefId":"Sku_36Fxy"
            }
        ],
        "totalRefund":"24.63",
        "additionalProperties":{
            "name2":"value2",
            "name1":"value1"
        },
        "state":"Approved",
        "totalReturnQuantity":"1",
        "trackingNumber":[
            "1234567890"
        ],
        "operation":"process"
    },
    {
        "returnRequestId":"200001",
        "returnLabel":"a5445afg5",
        "isExchangeRequest":false,
        "authorizationNumber":"12345",
        "createdDate":"1513929715000",
        "returnItems":[
            {
                "quantityToReturn":"1",
                "productId":"Product_36Exy",
                "returnReason":"Did Not Like",
                "additionalProperties":{
                    "name2":"value2",
                    "name1":"value1"
                },
                "state":"AWAITING_RETURN",
                "catRefId":"Sku_36Fxy"
            }
        ],
        "totalRefund":"24.63",
        "additionalProperties":{
            "name2":"value2",
            "name1":"value1"
        },
        "state":"Approved",
        "totalReturnQuantity":"1",
        "trackingNumber":[
            "1234567890"
        ],
        "operation":"process"
    },
    {
        "returnRequestId":"100003",
        "returnLabel":null,
        "isExchangeRequest":false,
        "authorizationNumber":"100003",
        "createdDate":"1513774357000",
        "returnItems":[
            {
                "quantityToReturn":"1",
                "productId":"Product_36Exy",
                "returnReason":"Did Not Like",
                "additionalProperties":{
                },
                "state":"AWAITING_RETURN",
                "catRefId":"Sku_36Fxy"
            }
        ],
        "totalRefund":"24.63",
        "additionalProperties":{
        },
        "state":"Approved",
        "totalReturnQuantity":"1",
        "trackingNumber":null,
        "operation":"process"
    },
    {
        "returnRequestId":"100002",
        "returnLabel":null,
        "isExchangeRequest":false,
        "authorizationNumber":"100002",
        "createdDate":"1513774188000",
        "returnItems":[
            {
                "quantityToReturn":"1",
                "productId":"Product_36Exy",
                "returnReason":"Did Not Like",
                "additionalProperties":{
                },
                "state":"AWAITING_RETURN",
                "catRefId":"Sku_36Fxy"
            }
        ],
        "totalRefund":"24.63",
        "additionalProperties":{
        },
        "state":"Approved",
        "totalReturnQuantity":"1",
        "trackingNumber":null,
        "operation":"process"
    },
    {
        "returnRequestId":"100001",
        "returnLabel":null,
        "isExchangeRequest":false,
        "authorizationNumber":"100001",
        "createdDate":"1513773501000",
        "returnItems":[
            {
                "quantityToReturn":"1",
                "productId":"Product_36Exy",
                "returnReason":"Did Not Like",
                "additionalProperties":{
                },
                "state":"AWAITING_RETURN",
                "catRefId":"Sku_36Fxy"
            }
        ],
        "totalRefund":"24.63",
        "additionalProperties":{
        },
        "state":"Approved",
        "totalReturnQuantity":"1",
        "trackingNumber":null,
        "operation":"process"
    }
]

Default Response

The following are the internal error codes thrown by this API when the request processing fails in Oracle Commerce Cloud:
Error CodeDescriptionPossible Fix
28107Order not found.Enter a valid order ID

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