Fix broken links

This commit is contained in:
Tyler Mairose
2024-02-28 12:14:29 -05:00
parent c2d2f29e89
commit 0b52bfff19
196 changed files with 320 additions and 320 deletions

View File

@@ -11,7 +11,7 @@ slug: /tools/sdk/powershell/paginate
tags: ['SDK']
---
By default, your requests will return a maximum of 250 records. To return more, you must implement pagination. To learn more about pagination, refer to [Paginating Results](/idn/api/standard-collection-parameters/#paginating-results).
By default, your requests will return a maximum of 250 records. To return more, you must implement pagination. To learn more about pagination, refer to [Paginating Results](/docs/api/standard-collection-parameters/#paginating-results).
Pagination is implemented with the SDK in the following code block on line 8:
@@ -45,4 +45,4 @@ The `-Parameters` specifies a hashtable of additional values passed to the API e
You can also provide an `-InitialOffset` value to specify the record number to start the request on. For example, you can provide add `-InitialOffset 10` to start getting accounts from 11 instead of 0.
To find out whether an endpoint supports pagination, refer to its documentation. Any API supporting pagination lists the optional query parameters detailed in [Paginating Results](/idn/api/standard-collection-parameters/#paginating-results).
To find out whether an endpoint supports pagination, refer to its documentation. Any API supporting pagination lists the optional query parameters detailed in [Paginating Results](/docs/api/standard-collection-parameters/#paginating-results).