GET /allChannels

This will provide all currently channels that we are integrated with. For each, the name and channelId will be given.

Responses

  • 200 application/json

    OK

    Hide headers attributes Show headers attributes
    • Access-Control-Allow-Credentials boolean
    • Access-Control-Allow-Headers string
    • Access-Control-Allow-Methods string
    • Access-Control-Allow-Origin string
    • Content-Length integer
    • Content-Type string
    • Date string
    • Server string
    • X-Protected-By string
GET /allChannels
curl \
 --request GET 'https://api.staging.deliverect.com/allChannels' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  {
    "name": "DELIVERECT",
    "channelId": 1
  },
  {
    "name": "DELIVEROO",
    "channelId": 2
  },
  {
    "name": "FOODORA",
    "channelId": 3
  },
  {
    "name": "......",
    "channelId": 4
  }
]