PUT
/
public
/
checkout
/
cart
/
{id}
/
confirm
curl -X PUT \
 /public/checkout/cart/{id}/confirm \
 --header "Content-Type: application/json" \
 --header "Authorization: Bearer <token>" \
 --data '{
    "email": "",
    "phone": "",
    "invoiceAddressId": "https:\/\/example.com\/",
    "paymentMethodId": "https:\/\/example.com\/"
}'
{
  "action": "redirect",
  "redirectUrl": "<string>",
  "status": "open",
  "confirmationMessage": "<string>"
}

Authorizations

Authorization
string
header
required

Value for the Authorization header parameter.

Path Parameters

id
string
required

Cart identifier

Body

The updated Cart resource

Response

200
application/json

Cart resource updated