Field | Type | Required | Description | Example |
---|---|---|---|---|
customerId |
string | ✔️ | The Customer identifier. Represents the Customer that this operation is going to be executed for. | |
dollarSort |
?string | ➖ | Sets the sort order If an object is passed, values allowed are asc, desc, ascending, descending, 1, and -1. If a string is passed, it must be a space delimited list of path names. The sort order of each path is ascending unless the path name is prefixed with - which will be treated as descending. | -name |
dollarLimit |
?int | ➖ | The maximum number of items to retrieve within the current page of results. | 10 |
dollarSkip |
?int | ➖ | The number of records to be skipped per call. By default, starts with 0 and you should provide the current value plus the $limit value in subsequent calls to retrieve following sets of values (pages). So it will skip the number of records on the previous page and bring the next set of records. |
10 |