> For the complete documentation index, see [llms.txt](https://eshop.gitbook.io/eshopbox-developers/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://eshop.gitbook.io/eshopbox-developers/setting/sales-channel-subscription/create-a-subscription.md).

# Create a Sales Channel

## Create a Sales Channel

<mark style="color:green;">`POST`</mark> `https://{{workspace}}.myeshopbox.com/api/v1/channel`

This endpoint allows to create a sales channel&#x20;

#### Headers

| Name           | Type   | Description                                    |
| -------------- | ------ | ---------------------------------------------- |
| Authentication | string | The Bearer token is required to access the API |

#### Request Body

| Name                | Type    | Description                                               |
| ------------------- | ------- | --------------------------------------------------------- |
| portalId            | integer | Id of portal for which sales channel is created           |
| integrationModelId  | integer | Integration model id for which a sales channel is created |
| channelAccountId    | integer | channel account id for which sales channel is created     |
| fulfillmentChannels | array   | list of warehouses for which sales channel is created     |

{% tabs %}
{% tab title="200 Sales channel is successfully subscribed" %}

```
{
   
    "id": "1",
    "integrationModelId": "1",
    "channelAccountId": "1",
    "portalId": "1",
    "externalChannelId": "TATA CLIQ VELOCY KAPAS KRAFT",
    "accountSlug": "CH1234",
    "portalName": "TATA CLIQ",
    "integrationModelName": "Amazon Prime",
    "channelAccountName": "Eshopbox channel account",
    "fulfillmentChannels": [
        {
            "fulfillmentChannelId": "1",
            "channelSubscriptionId": "1",
            "warehouseId": "9",
            "externalWmsChannelName": "Amazon_prime_Eshopbox",
            "status": "0",
            "enrollmentStatus": "INACTIVE",
            "warehouseName": "Kapas Kraft Apparels Limited 1006",
            "opsVerificationStatus": "0"
        },
        {
            "fulfillmentChannelId": "2",
            "channelSubscriptionId": "1",
            "warehouseId": "16",
            "externalWmsChannelName": "Amazon_prime_Eshopbox",
            "status": "0",
            "enrollmentStatus": "INACTIVE",
            "warehouseName": "Kapas Kraft Apparels Limited 1006",
            "opsVerificationStatus": "0"
        }
    ],
    "additionalDetails": {
        "fieldName1": "CH0001",
        "fieldName2": "CH0001"
    },
    "status": "0",
    "brandRegistrationStatus": "0",
    "enrollmentStatus": "IN PROCESS",
    "createdAt": "2019-04-08T12:41:05.000+05:30",
    "updatedAt": "2019-04-08T12:41:05.000+05:30"

}
```

{% endtab %}
{% endtabs %}

{% tabs %}
{% tab title="cURL" %}

```bash
curl -X POST https://{{workspace}}.myeshopbox.com/api/v1/channel \
     -H "Authorization: Bearer XXXX" \
     -H "Content-Type: application/json" \
     -d $'{
      "data": {
        "portalId": 1,
        "integrationModelId":1
        "channelAccountId": 1,
        "fulfillmentChannels": [
        {
            "warehouseId": 1
        },
        {
            "warehouseId": 2
        }
        ] 
      }
    }'
```

{% endtab %}
{% endtabs %}


---

# 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://eshop.gitbook.io/eshopbox-developers/setting/sales-channel-subscription/create-a-subscription.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.
