OBJECT

orderWithOrderItemContainer

Structure containing an order ID and order item ID.

link GraphQL Schema definition

1type orderWithOrderItemContainer {
2
3# The `orderId` value returned in the response can be used as the `orderId` in
4# requestbody of `PUT /store/{storeId}/cart/@self/precheckout`.
5#
6#
7# Equivalent to PUT /store/{storeId}/cart/@self/precheckout
8#
9# Arguments
10# responseFormat: The response format. Valid values are json and
11# xml. If the request contains an input body, it must use the format specified in
12# responseFormat. If the responseFormat is not specified, the accept HTTP header
13# determines the format of the response. If the accept HTTP header is not
14# specified then default response format is json.
15# storeId: The store identifier.
16getOrderByOrderId(
17responseFormat: ResponseFormat,
18storeId: String!
19): cartOrderIdContainer
55
20# Order identifier.
21orderId: String!
55
22# List of order items.
23orderItem: [ComIbmCommerceRestOrderHandlerCartHandlerOrderWithOrderItemContainerOrderItemBodyDescription]!
55
24resourceName: String
55
25# The `storeId` value returned in the response can be used as the `storeId`
26# parameter in `PUT /store/{storeId}/cart/@self/precheckout`.
27#
28#
29# Equivalent to PUT /store/{storeId}/cart/@self/precheckout
30#
31# Arguments
32# responseFormat: The response format. Valid values are json and
33# xml. If the request contains an input body, it must use the format specified in
34# responseFormat. If the responseFormat is not specified, the accept HTTP header
35# determines the format of the response. If the accept HTTP header is not
36# specified then default response format is json.
37storeId(responseFormat: ResponseFormat): cartOrderIdContainer
55
38# The `orderId` value returned in the response can be used as the `orderId` in
39# requestBody of `PUT /store/{storeId}/cart/@self/update_order_item`.
40#
41#
42# Equivalent to PUT /store/{storeId}/cart/@self/update_order_item
43#
44# Arguments
45# responseFormat: The response format. Valid values are json and
46# xml. If the request contains an input body, it must use the format specified in
47# responseFormat. If the responseFormat is not specified, the accept HTTP header
48# determines the format of the response. If the accept HTTP header is not
49# specified then default response format is json.
50# storeId: The store identifier.
51updateOrderByOrderId(
52responseFormat: ResponseFormat,
53storeId: String!
54): orderWithOrderItemContainer
56
57}