OBJECT
paymentInstructionList
Payment instruction list.
link GraphQL Schema definition
1 type paymentInstructionList { 2 3 # The `orderId` value returned in the response can be used as the `orderId` in 4 # request body of `POST /store/{storeId}/cart/@self/checkout`. 5 # 6 # 7 # Equivalent to POST /store/{storeId}/cart/@self/checkout 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. 16 ( 17 ResponseFormat, : 18 String! : 19 ): cartOrderIdContainer 38 20 # Order identifier. 21 String! : 38 22 # List of payment instructions. 23 ComIbmCommerceRestOrderHandlerPaymentInstructionHandlerPaymentInstructionListPaymentInstruction]! : [ 38 24 String! : 38 25 # The `storeId` value returned in the response can be used as the `storeId` 26 # parameter in `POST /store/{storeId}/cart/@self/checkout`. 27 # 28 # 29 # Equivalent to POST /store/{storeId}/cart/@self/checkout 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. 37 ResponseFormat): cartOrderIdContainer ( : 39 40 }