Get List of All Shopping Carts

get

/rest/v16/shoppingCarts

This endpoint returns a list of all shopping carts visible to the user.

Request

There are no request parameters for this operation.

Back to Top

Response

Default Response

The response for getting the shopping carts.
Body ()
Root Schema : shopping-cart-list-response
Type: object
Show Source
Nested Schema : items
Type: array
Show Source
Nested Schema : shopping-cart-response
Type: object
Show Source
Nested Schema : shoppingCartItems
Type: object
Show Source
Back to Top

Examples

The following example shows how to retrieve a list of shopping carts by submitting a GET request to the REST resource using cURL. For more information about cURL, see Use cURL.

curl - X GET - i - H "Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQg" - H "Content-type: application/json"
https://sitename.oracle.com/rest/v16/shoppingCarts

Response Body Sample

{
    "links": [{
            "rel": "self",
            "href": "https://sitename.oracle.com/rest/v16/shoppingCarts"
        }
    ],
    "items": [{
            "links": [{
                    "rel": "self",
                    "href": "https://sitename.oracle.com/rest/v16/shoppingCarts/transaction"
                }
            ],
            "priceBookApplicable": true,
            "showAddToQuoteButton": false,
            "showCheckoutButton": true,
            "processVarName": "transaction",
            "processName": "Quotes"
        }, {
            "links": [{
                    "rel": "self",
                    "href": "https://sitename.oracle.com/rest/v16/shoppingCarts/oraclecpqo"
                }
            ],
            "priceBookApplicable": true,
            "showAddToQuoteButton": false,
            "showCheckoutButton": true,
            "processVarName": "oraclecpqo",
            "processName": "Oracle Quote to Order",
        }
    ]
Back to Top