# Changing channel mode

In our service, a channel can operate in one of three modes: **Trial**, **Sandbox**, and **Live**.&#x20;

**Trial and Sandbox Modes**\
Both Trial and Sandbox modes come with identical limits: 150 messages per day, 5 chats per month, and 1,000 API requests per month. New partner channels are initially created in Trial mode, offering 5 days of free access to our gateway. This period is cost-free for partners, eliminating financial risks and thereby increasing the likelihood of their users purchasing the service.

{% hint style="success" %}
If you subscribe to channels yourself, there is no need to change the channel mode as it will be done automatically.
{% endhint %}

**Transitioning from Trial to Live**\
To convert a channel from Trial to Live mode, a specific API call is required. This transition is an essential step in activating the full capabilities of the channel for your client, removing the initial limitations.\
\
After the mode is changed, the channel restarts, so it is recommended to avoid performing any other actions with it for approximately 30 seconds to prevent incorrect operation.

{% embed url="<https://whapi-partner.readme.io/reference/changechannelmode>" %}
Don't forget to put the channel in LIVE mode
{% endembed %}

```url
curl --request PATCH \
     --url https://manager.whapi.cloud/channels/MANTIS-PF298/mode \
     --header 'accept: application/json' \
     --header 'authorization: Bearer eyJhbGciOiJS.......Eg' \
     --header 'content-type: application/json' \
     --data '{"mode":"live"}'
```


---

# Agent Instructions: 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://support.whapi.cloud/help-desk/partner-documentation/partner-documentation/changing-channel-mode.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.
