Operation Id:
clients/pricelists/products/get [Official Documentaction]
Methods
- priceListId Integer
- resultsPage Integer
- resultsLimit Integer
Examples
This function retrieves the products associated with a specific price list ID, which is 4 in this case.
Loading editor...
const result = await idosellRequest.getClientsPricelistsProducts .priceListId(4) .exec();
This function retrieves a specific page of clients' pricelists products, with each page containing 10 products and starting from the second page.
Loading editor...
const result = await idosellRequest.getClientsPricelistsProducts .page(2,10) .exec();