List All Store Listings
GET /api/v2/channel_sellables
Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ”Number of items to show per page, between 1 and 100.
Page number to show.
Show only store listings with this remote SKU code.
Show only store listings with this remote ID.
Show only store listings belonging to this specific store.
Sort the results by criteria. Defaults to creation date in ascending order.
Comma-separated list of related resources to include.
Responses
Section titled “ Responses ”object
A list of store listings.
A listing on a remote store (aka channel sellable).
object
ID of the store listing in Veeqo.
object
The title of this store listing.
The SKU code of this store listing as it appears on the remote store.
The price of this listing as it appears on the remote store.
The unit of currency of the remote_price
.
The number of units shown for sale on the remote store.
The ID of store listing on the remote store.
Whether this listing is active on the remote store.
object
object
object
ID of the channel this store listing is linked to.
channel
object
object
ID of the user who created this store listing.
user
object
object
ID of the last user who updated this store listing.
user
object
object
ID of the product in Veeqo this store listing is linked to.
object
object
ID of the channel product this listing is linked to.
channel_product
object
object
ID of the sellable this store listing is linked to in Veeqo.
sellable
object
Metadata about pagination of the results.
object
Current page number.
Number of results shown per page.
Number of pages in total.
Number of entities in total.
Example
{ "data": [ { "id": "6789", "type": "channel_sellable", "attributes": { "remote_title": "Test Product", "remote_sku": "SKU123456", "remote_price": 19.99, "currency_code": "GBP", "remote_inventory_quantity": null, "active": true }, "relationships": { "channel": { "data": { "id": "54321", "type": "channel" } }, "created_by": { "data": { "id": "101", "type": "user" } }, "updated_by": { "data": null }, "product": { "data": { "id": "2468", "type": "product" } }, "channel_product": { "data": { "id": "9876", "type": "channel_product" } }, "sellable": { "data": { "id": "12345", "type": "sellable" } }, "remote_url": { "data": null } } } ], "meta": { "page": { "current": "1", "size": "10", "total_pages": "1", "total_count": "1" } }}