> For the complete documentation index, see [llms.txt](https://docs.xenioo.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.xenioo.com/xenioo-api/globa-platform-api/bots/publishing/get-channel-settings.md).

# Get Channel Settings

This endpoint will retrieve the current bot settings for a specific channel.&#x20;

{% hint style="warning" %}
Settings calls are throttled at 1 call per bot per channel every 15 minutes. Trying to use this endpoint before the expired time will result in an error.
{% endhint %}

### Request

The following request will publish a chatbot on the currently active channels

```bash
curl --location --request GET 'https://<SERVICE ENDPOINT>/bots/publish/channel/<providerid>' \
--header 'Authorization: Bearer <BOT_AUTH_TOKEN>' \
--header 'Content-Type: application/json'
```

the \<providerid> value must be one of the available Xenioo channels in full signature value (e.g. Xenioo.Bots.Web.WebChannel) or simple common name (e.g. Web).

| Full signature                                | Name              |
| --------------------------------------------- | ----------------- |
| Xenioo.Bots.Alexa.AlexaChannel                | Alexa             |
| Xenioo.Bots.APIHook.APIHookChannel            | APIHook           |
| Xenioo.Bots.Discord.DiscordChannel            | Discord           |
| Xenioo.Bots.Facebook.FacebookChannel          | Facebook          |
| Xenioo.Bots.Genesys.GenesysChannel            | Genesys           |
| Xenioo.Bots.GoogleBusinessMessages.GBMChannel | Business Messages |
| Xenioo.Bots.Instagram.InstagramChannel        | Instagram         |
| Xenioo.Bots.MSTeams.MSTeamsChannel            | Microsoft Teams   |
| Xenioo.Bots.Phone.PhoneChannel                | Phone             |
| Xenioo.Bots.RCS.RCSChannel                    | RCS               |
| Xenioo.Bots.Slack.SlackChannel                | Slack             |
| Xenioo.Bots.SMS.SMSChannel                    | SMS               |
| Xenioo.Bots.Telegram.TelegramChannel          | Telegram          |
| Xenioo.Bots.Viber.ViberChannel                | Viber             |
| Xenioo.Bots.Web.WebChannel                    | Web               |
| Xenioo.Bots.WhatsApp.WhatsAppChannel          | WhatsApp          |

{% hint style="warning" %}
This request requires a specific API Integration flag that might not be enabled by default on your account.
{% endhint %}

### Response

If successful, the request will return the selected channel channel configuration.&#x20;

Please note that while the returned fields match the fields used in the Xenioo UI when configuring a channel, settings are considered as an external channel configuration and used as a raw string that only the final provider is supposed to parse as a complete model.

### Response Codes

This endpoint will reply with the following standard HTTP codes.

| Code | Meaning                                                                                      |
| ---- | -------------------------------------------------------------------------------------------- |
| 200  | Ok. The request has been successfully fulfilled.                                             |
| 400  | Bad Request                                                                                  |
| 401  | Unauthorized                                                                                 |
| 404  | Not Found. The specified chatbot has not been found or the requested channel is not enabled. |


---

# 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, and the optional `goal` query parameter:

```
GET https://docs.xenioo.com/xenioo-api/globa-platform-api/bots/publishing/get-channel-settings.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
