Skip to main content
GET
/
v1
/
sales-channels
List sales channels
curl --request GET \
  --url https://api.fire.rest/v1/sales-channels
{
  "channels": [
    {
      "id": "channel_abc123",
      "name": "Uber Eats",
      "type": "uber_eats",
      "store_id": "store_xyz",
      "active": true
    },
    {
      "id": "channel_def456",
      "name": "Rappi",
      "type": "rappi",
      "store_id": "store_xyz",
      "active": true
    }
  ]
}
store_id
string
Filter channels by store. If omitted, returns all channels across all stores.
channels
object[]
List of sales channels.
{
  "channels": [
    {
      "id": "channel_abc123",
      "name": "Uber Eats",
      "type": "uber_eats",
      "store_id": "store_xyz",
      "active": true
    },
    {
      "id": "channel_def456",
      "name": "Rappi",
      "type": "rappi",
      "store_id": "store_xyz",
      "active": true
    }
  ]
}