Get Attribute Set

Sales Layer Catalog REST API (2.0.0)

The Sales Layer Catalog REST API provides programmatic access to the catalog data managed in Sales Layer.

Use this reference to retrieve, filter, create, update, or delete products, variants, categories, attribute sets, custom entities, metadata, and changelog records. These endpoints support synchronization, enrichment, publishing, reporting, and other integration workflows across ecommerce platforms, ERPs, marketplaces, DAM systems, supplier systems, and internal tools.

Start with metadata endpoints when your integration needs to discover available fields and relationships, use pagination and filtering for large reads, and rely on changelogs for incremental synchronization whenever possible.

Attribute Sets

Operations

Request

Filters the tenant's Attribute Set resources using OData query options ( $select, $expand, $filter, $orderby, $skip, $top, $skipToken). Result's paging is done using the default paging size options.

Parameters details

$select
Expression describing the list of Attribute Set resource properties to be included in the result.

$expand
Expression describing the list of collections embedded in the Attribute Set resource ( Products) to be included in the result.

$filter
Expression describing the filters applied to the resources included in the result.

$orderby
Expression describing the ordering applied to the properties of resources included in the result.

$skip
Expression setting up result's paging according to the limit and offset paging strategy.

$top
Expression setting up the number of items in the result.

Query Examples

  1. $filter=prod_ref eq 'SKU-001'
  2. $expand=Products
  3. $orderby=typ_title asc
  4. $select=typ_title,typ_stat
  5. $top=10

Response Structure

{
  "@readLink": "string",
  "@nextLink": "string",
  "@deltaLink": "string",
  "@context": "string",
  "value": null,
  "@count": 0
}

Example Request

curl -i -X GET \
  'https://api2.saleslayer.com/catalog/AttributeSets?%24filter=string&%24orderby=string&%24skip=0&%24skipToken=string&%24top=0&%24select=string&%24expand=string' \
  -H 'Accept-Language: string' \
  -H 'X-API-KEY: string'

Responses