OBJECT

cartOrderIdContainer

Structure containing an order identifier.

link GraphQL Schema definition

1type cartOrderIdContainer {
2
3# The `orderId` value returned in the response can be used as the `orderId` in
4# requestBody of `POST /store/{storeId}/cart/@self/payment_instruction`.
5#
6#
7# Equivalent to POST /store/{storeId}/cart/@self/payment_instruction
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): paymentInstructionList
23
20# Order identifier.
21orderId: String!
23
22resourceName: String
24
25}