Operation Id:
warranties/warranties/get [Official Documentaction]
Methods
- warranty_ids Array<String>
- results_limit Integer
- results_page Integer
- results_order Object
Examples
This function returns the warranty IDs for the items with the given IDs (1, 2, and 3).
const result = await idosellRequest.getWarranties
.warranty_ids(["1", "2", "3"])
.exec()
This function retrieves a specific page of warranties, displaying 10 warranties per page starting from page 2.
const result = await idosellRequest.getWarranties
.page(2,10)
.exec()