Page size controls how many items an API list operation returns in a single response.
The migrated documentation states:
| Setting | Value |
|---|---|
| Maximum items per page | 100 |
| Default page size | Varies by endpoint |
The current DAM OpenAPI description also documents $top with a default of 100 and maximum of 100 for image listing.
For Catalog endpoints, check the Catalog endpoint reference and resource metadata for endpoint-specific behavior.
- Keep page sizes small enough for the client to process reliably.
- Use pagination for large exports or synchronization jobs.
- Avoid requesting the maximum page size by default unless the integration has been tested under production-like data volume.
- Combine page size with filtering and sorting when this makes synchronization more predictable.
GET https://api2.saleslayer.com/catalog/rest/Catalog/Products?$top=50GET https://api2.saleslayer.com/dam/image?$top=50