Checkout
Last updated
Was this helpful?
Was this helpful?
curl -X POST "https://graph.whisk.com/v1/carts/checkout" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "Authorization: Token <Access-Token>" \
-d '{
"items": [
{
"storeItem": {
"sku": "278272994",
"quantity": 1
}
},
{
"storeItem": {
"sku": "258270595"
}
}
],
"retailerId": "tesco",
"credentials": {
"basic": {
"username": "[email protected]",
"password": "s3cret"
}
}
}'curl -X POST "https://graph.whisk.com/v1/carts/checkout" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "Authorization: Token <Access-Token>" \
-d '{
"items": [
{
"raw": {
"name": "4 large eggs"
}
},
{
"raw": {
"name": "handful basil leaves"
}
}
],
"retailerId": "amazonfresh-us"
}'