Examples
Sending items to basket
curl "https://graph.whisk.com/v1/lists/transfers" \
-H "Authorization: Token <Access-Token>" \
-H "Content-Type: application/json" \
-d '{
"language": "en",
"rawItems": [
"250ml milk",
"50g dark chocolate ",
"10 marshmallows"
],
"items": [
{
"name": "milk",
"quantity": 250,
"unit": "ml"
},
{
"name": "dark chocolate",
"quantity": 50,
"unit": "g"
},
{
"name": "marshmallows",
"quantity": 10
}
]
}'Sending recipes to basket
Setting additional parameters
Last updated
Was this helpful?