CollectionListing

Sales Channel SDK

The CollectionListing resource is available to Sales Channel SDK applications only.

A CollectionListing resource represents a product collection that a merchant has made available to your sales channel. Merchants can make collections available to your sales channel directly from their Shopify admin.

You can use this resource to retrieve collections that a merchant has published and display them in your marketplace. You can also retrieve a list of published product IDs that belong to a published collection.

Note:

When a merchant makes a collection available to your app, the products belonging to that collection are not automatically made available. The merchant must make both the collection and each product available to your sales channel.

What you can do with CollectionListing

The Shopify API lets you do the following with the CollectionListing resource. More detailed versions of these general actions may be available:

CollectionListing properties

collection_id READ-ONLY plain "collection_id": 1053727709 Identifies which collection this listing is for.
body_html READ-ONLY plain "body_html": "It's a collection of curated products for the home page." The description of the collection, complete with HTML formatting.
default_product_image READ-ONLY plain "default_product_image": [ { "src": "http://example.com/burton.jpg" } ] The default product image for a collection.
image READ-ONLY plain "image": [ { "src": "http://example.com/burton.jpg" } ] The image for a collection.
handle READ-ONLY plain "handle": "ipod-nano" A human-friendly unique string for the Collection automatically generated from its title.
published_at READ-ONLY plain "published_at": "2007-12-31T19:00:00-05:00" The date and time when the collection was published. The API returns this in ISO_8601.
title READ-ONLY plain "title": "Home page" The name of the collection.
sort_order READ-ONLY plain "sort_order": "alpha-asc" The order in which products in the collection appear. Valid values are:
+ alpha-asc: Alphabetically, in ascending order (A - Z).
+ alpha-desc: Alphabetically, in descending order (Z - A).
+ best-selling: By best-selling products.
+ created: By date created, in ascending order (oldest - newest).
+ created-desc: By date created, in descending order (newest - oldest).
+ manual: Order created by the shop owner.
+ price-asc: By price, in ascending order (lowest - highest).
+ price-desc: By price, in descending order (highest - lowest).
updated_at READ-ONLY plain "updated_at": "2012-08-24T14:01:47-04:00" The date and time when the collection was last modified. The API returns this in ISO_8601.

Endpoints

GET/admin/api/2021-01/collection_listings.json Retrieve collection listings that are published to your app. Note: As of version 2019-07, this endpoint implements pagination by using links that are provided in the response header. Sending the <font style="background-color:#F4F6F8;">page</font> parameter will return an error. To learn more, see Making requests to paginated REST Admin API endpoints.
limit Amount of results
(default: 50
, maximum: 1000
)

Retrieve collection listings that are published to your app

GET /admin/api/2021-01/collection_listings.json

View Response

GET/admin/api/2021-01/collection_listings/{collection_listing_id}/product_ids.json Retrieve <font style="background-color:#F4F6F8;">product_ids</font> that are published to a <font style="background-color:#F4F6F8;">collection_id</font>. Note: As of version 2019-07, this endpoint implements pagination by using links that are provided in the response header. Sending the <font style="background-color:#F4F6F8;">page</font> parameter will return an error. To learn more, see Making requests to paginated REST Admin API endpoints.
limit Amount of results
(default: 50
, maximum: 1000
)

Retrieve product_ids that are published to a collection_id

GET /admin/api/2021-01/collection_listings/841564295/product_ids.json

View Response

GET/admin/api/2021-01/collection_listings/{collection_listing_id}.json Retrieve a specific collection listing that is published to your app

Retrieve a specific collection listing that is published to your app

GET /admin/api/2021-01/collection_listings/482865238.json

View Response

PUT/admin/api/2021-01/collection_listings/{collection_listing_id}.json Create a collection listing to publish a collection to your app

Create a collection listing to publish a collection to your app

PUT /admin/api/2021-01/collection_listings/482865238.json

{

“collection_listing”: {

  1. "collection_id": 482865238

}

}

View Response

DELETE/admin/api/2021-01/collection_listings/{collection_listing_id}.json Delete a collection listing to unpublish a collection from your app

Delete a collection listing to unpublish a collection from your app

DELETE /admin/api/2021-01/collection_listings/482865238.json

View Response