Pagination
The procedure to refine returned results using limit and offset parameters.
Declaration
object PaginationProperties
| Name | Type | Description |
|---|---|---|
limit | int32 | The number of items to return per request. For most objects, the default is |
offset | int32 | The offset pagination that limits the number of returned records. The start of each page is offset by the specified number. You can apply |
Discussion
In the following example, the two optional parameters limit the number of campaigns that return. You specify offset and limit as query string parameters.
GET https://api.searchads.apple.com/api/v5/campaigns?limit=<LIMIT>&offset=<OFFSET>