Skip to content

Sales Layer APIs support query parameters to control which records are returned and how much data each response contains.

The exact parameters depend on the API and endpoint. The OpenAPI reference is the source of truth for each operation.

Query parameter guide

ParameterPurposeGuide
$selectChoose specific fields in Catalog responses.Select
$filterFilter records by supported properties.Filter
$orderbySort returned records.Orderby
$expandInclude supported embedded Catalog collections.Expand
$topLimit page size.Page size limits
$skipSkip a number of records for offset pagination.Pagination strategies
$skipTokenContinue pagination from a token when supported.Pagination strategies

Supported by API

APIDocumented query parameters
DAM REST API$filter, $orderby, $top, $skip
Catalog REST API$select, $expand, $filter, $orderby, $top, $skip, $skipToken

Recommendations

  • Request only the fields and records needed by the integration.
  • Use metadata endpoints to discover Catalog fields.
  • Keep page sizes reasonable.
  • Apply filters before processing data client-side.
  • Use stable sorting for repeatable pagination.
  • Handle empty result sets as valid responses.