curl -X POST \
/checkout-links/{id}/cart \
--header "Content-Type: application/json" \
--header "Authorization: Bearer <token>" \
--data '{
"customerId": "ad7f7b7d-7b7d-7b7d-7b7d-7b7d-7b7d7b7d7b7d",
"metadata": [
""
]
}'
{
"cartId": "ad7f7b7d-7b7d-7b7d-7b7d-7b7d7b7d7b7d",
"customerId": "ad7f7b7d-7b7d-7b7d-7b7d-7b7d7b7d7b7d",
"url": "https://example.com/cart/123"
}
Create a cart from a checkout link by its ID
Required permissions:cart:write
curl -X POST \
/checkout-links/{id}/cart \
--header "Content-Type: application/json" \
--header "Authorization: Bearer <token>" \
--data '{
"customerId": "ad7f7b7d-7b7d-7b7d-7b7d-7b7d-7b7d7b7d7b7d",
"metadata": [
""
]
}'
{
"cartId": "ad7f7b7d-7b7d-7b7d-7b7d-7b7d7b7d7b7d",
"customerId": "ad7f7b7d-7b7d-7b7d-7b7d-7b7d7b7d7b7d",
"url": "https://example.com/cart/123"
}
Value for the Authorization header parameter.
CheckoutLink identifier
The new CheckoutLink resource
CheckoutLink resource created
Was this page helpful?