> For the complete documentation index, see [llms.txt](https://docs.mews.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.mews.com/channel-manager-api/use-cases/channels.md).

# Channels

The Channels use case describes how to retrieve the list of sales channels and how to add a new sales channel if it is not already listed.

## Fetching the list of channels

For the list of supported sales channels or sources, including Online Travel Agents (OTAs), use the [Mews: Get channels](/channel-manager-api/mews-operations/configuration.md#get-channels) operation.

| 'How to' use case                                | API Operations                                                                           |
| ------------------------------------------------ | ---------------------------------------------------------------------------------------- |
| How to get the list of sales channels or sources | [Mews: Get channels](/channel-manager-api/mews-operations/configuration.md#get-channels) |

## Adding a new channel

If you are connected to a sales channel which is not listed, and you are certified to use Sources, then you can add the new channel source through the API. Simply send the reservation using [Mews: Process group](/channel-manager-api/mews-operations/reservations.md#process-group) and use the `sources` array, but when specifying the unlisted source, leave the `code` value as `null`. Take care to specify the correct `name` and `type` for the source. Mews will add the new channel to the database and auto-generate a new code for it. To verify the new channel has been added, and to fetch the new code, use [Mews: Get channels](/channel-manager-api/mews-operations/configuration.md#get-channels). You can then use that code for future reservations as normal.

For example:

```json
"sources": [
  {
    "code": null,
    "name": "my new source",
    "type" : 6,
    "isPrimary": true
  }
]
```

If you are connected to a sales channel which is not listed, but you are *not* certified to use Sources, then please contact Mews via [partnersuccess@mews.com](mailto://partnersuccess@mews.com) and we can update the list manually.

| 'How to' use case                                             | API Operations                                                                            |
| ------------------------------------------------------------- | ----------------------------------------------------------------------------------------- |
| How to add a new sales channel or source (if certified)       | [Mews: Process group](/channel-manager-api/mews-operations/reservations.md#process-group) |
| How to add a new sales channel or source (if *not* certified) | Contact Mews via [partnersuccess@mews.com](mailto://partnersuccess@mews.com)              |
| How to verify the new sales channel or source                 | [Mews: Get channels](/channel-manager-api/mews-operations/configuration.md#get-channels)  |


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.mews.com/channel-manager-api/use-cases/channels.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
