POST v1/ShoppingCarts/Checkout/PurchaseOrder

Completes the shopping experience using a purchase order for payment. The shopper must have the required credit approval limits.

Request Information

URI Parameters

None.

Body Parameters

purchaseOrderCheckoutInput
NameDescriptionTypeAdditional information
purchaseOrderNumber

string

Required

Request Formats

application/json, text/json

Sample:
{
  "purchaseOrderNumber": "sample string 1"
}

text/html

Sample:
{"purchaseOrderNumber":"sample string 1"}

application/xml, text/xml

Sample:
<v1_ShoppingCarts_ShoppingCartEndpointController.purchaseOrderCheckoutInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aptify.Services.Generated.v1_ShoppingCarts_ShoppingCartEndpoint">
  <purchaseOrderNumber>sample string 1</purchaseOrderNumber>
</v1_ShoppingCarts_ShoppingCartEndpointController.purchaseOrderCheckoutInput>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'purchaseOrderCheckoutInput'.

Response Information

Resource Description

CartCheckoutOutput
NameDescriptionTypeAdditional information
id

The ID of created order

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "id": 1
}

text/html

Sample:
{"id":1}

application/xml, text/xml

Sample:
<v1_ShoppingCarts_ShoppingCartEndpointController.CartCheckoutOutput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aptify.Services.Generated.v1_ShoppingCarts_ShoppingCartEndpoint">
  <id>1</id>
</v1_ShoppingCarts_ShoppingCartEndpointController.CartCheckoutOutput>