...
changedate | date | Return all products changed on or after the provided date. |
changetime | time | If this is provided only return products changed after the provided date and time. |
resumekey | string | If a partial result is returned, provide the resumekey received along with the partial result, to get the rest of the entries |
include_prices | boolean | Get prices even if these are disabled |
ignoreclosed | boolean | Skip products that are deleted |
onlyfavorites | boolean | If 1 then only get products that are the favorites of the current user |
skip_deleted | boolean | If 1 then don't send deleted products |
Output
products | collection[ product ] | A collection of the relevant products, or an empty collection if no products were found. |
resumekey | string | Sometimes the entire result cannot be returned because it's to large. In that case a resumekey is returned along with the results. Execute the command again with this resumekey to get the remaining results. |
...
Get all product groups. Notice that product groups can be nested, so a product group can be the "child" of another product group.
Input
inclchildren | bool | Set to 0 to get only the "root" product groups, set to 1 to get all product groups. |
Output
groups | collection[productgroup] | All the product groups, each product group holds {id,title,parentid} |