Operation Id:
sizecharts/sizecharts/get [Official Documentaction]
Methods
- ids Array<Integer>
- names Array<String>
- languages Array<String>
- resultsPage Integer
- resultsLimit Integer
Examples
This function retrieves size charts for the Polish language.
Loading editor...
const result = await idosellRequest.getSizecharts .languages(["pol"]) .exec();
This function retrieves the size charts on the second page with a limit of 10 per page.
Loading editor...
const result = await idosellRequest.getSizecharts .page(2,10) .exec();
This function returns a list of size chart IDs based on the input list of numbers.
Loading editor...
const result = await idosellRequest.getSizecharts .ids([1,2,3]) .exec();