Operation Id:
clients/pricelists/get [Official Documentaction]
Methods
- priceListIds Array<Integer>
- returnElements Array<String>
- resultsPage Integer
- resultsLimit Integer
Examples
This function retrieves the price list IDs of the clients with ID 4.
Loading editor...
const result = await idosellRequest.getClientsPricelists .priceListIds([4]) .exec();
This function retrieves the clients' pricelists for page 2 with 10 entries per page.
Loading editor...
const result = await idosellRequest.getClientsPricelists .page(2,10) .exec();