---
title: "List sales channels V2"
method: GET
path: "/api/v2/salesChannels"
tags: ["Sales Channel"]
---

# List sales channels V2

`GET /api/v2/salesChannels`

Returns a collection with all sales channels.

## Query parameters

- `page` object
  - `number` string, required — Page number should be an integer greater than or equal to 1
  - `size` string, required — Page size should usually be an integer between 10 and 50.
- `filter` object[]
  - `key` 'id' | 'name' | 'moduleName', required — Field to filter by.
  - `op` 'equals' | 'notEquals' | 'in' | 'notIn' | 'contains' | 'notContains' | 'startsWith' | 'endsWith', required — Operator to use for filtering.
  - `value` union, required
    - string — Always passed as string in query; backend parses as string, numeric, date, or datetime based on 'key'.
    - string[] — Used for the 'in' operator. Items must be strings representing numeric, date, etc.

## Response `200`

A list of sales channels that the individual customer has integrated with Xentral.

- object
  - `data` object[], required
    - `id` string — The unique identifier of the sales channel
    - `uuid` string, required — UUID identifier of the resource.
    - `project` object — The project ID this sales channel belongs to
      - `id` string
    - `moduleName` 'shopify' | 'amazon' | 'shopware6' | 'woocommerce' — The type of sales channel platform (e.g. Shopify, Amazon, etc.)
    - `name` string — The display name of the sales channel
    - `stockExport` boolean — Whether stock levels are automatically exported
    - `productExport` boolean — Whether product data is automatically exported
    - `active` boolean — Whether the sales channel is currently active
    - `preventDeletion` boolean — Whether the sales channel can be deleted in the frontend
    - `hideFromOverview` boolean — Whether the sales channel can be seen in the frontend list
    - `isMigratedToConnect` boolean — Whether the sales channel is migrated to Connect
    - `createdAt` string, date-time — The timestamp when the sales channel was created
    - `updatedAt` string, date-time — The timestamp when the sales channel was last updated
  - `extra` object, required
    - `totalCount` integer, required — the total count of all items
    - `page` object, required — The pagination object containing the current page number and size
      - `number` integer, required — The current page number
      - `size` integer, required — The size of the pages

## Other responses

- `401` — Unable to authenticate the client
- `403` — Unable to authorize the client

---

[API](https://skmtc.net/xentral/apis/xentral-api.md) · [All operations](https://skmtc.net/xentral/apis/xentral-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/xentral/xentral-api/revisions/8a27ba392442/schema)
