Get Shopping Lists

Returns all available shopping lists for the user. This API available only for user access-token integration.

Get Shopping Lists

GET https://graph.whisk.com/v1/lists

{
  "lists": [
    {
      "id": "ef610b5c0e294ef6a54931738d79f55d",
      "name": "My Shopping List",
      "createdTime": "2017-12-07T20:06:14+0000",
      "updatedTime": "2017-12-07T20:06:14+0000"
    }
  ]
}

Response

ShoppingList

Sample Request

curl "https://graph.whisk.com/v1/lists" \
    -H "Accept: application/json" \
    -H "Authorization: Bearer <User-Access-Token>"

Last updated