Parameters for all requests
- companyid - The companyid is a unique code that is given as part of your subscription to access the API. This code must be supplied as part of the header for each API request.
Refer to the Documentation page for each specific request and the supported Parameters
List Recipes
Format
/api/Recipes/List?[parameters]
Description
Returns the list of available recipes.
Parameters
- IsSorted - True/False value indicating if the returned list should be alphabetically sorted. Default is False.
Example
/api/Recipes/List
Output
{
"Recipes": [
{
"Name": "Baby Blankets"
},
{
"Name": "Canvas"
}
]
}