# Add a new carrier for offer

| HTTP method | Endpoint                            |
| ----------- | ----------------------------------- |
| **POST**    | **/v1/offers/{offer\_id}/carriers** |

## Path parameters <a href="#path-parameters" id="path-parameters"></a>

| Parameter | Description                  |
| --------- | ---------------------------- |
| offer\_id | The unique id for the offer. |

## Request body parameters <a href="#request-body-parameters" id="request-body-parameters"></a>

| Field | Type   | Description                                                                               | Nullable |
| ----- | ------ | ----------------------------------------------------------------------------------------- | -------- |
| name  | string | Mobile Carrier to be targeted  If not selected, by default it allows all Mobile Carriers. | No       |

## Response body parameters <a href="#response-body-parameters" id="response-body-parameters"></a>

| Field     | Type    | Description                                   |
| --------- | ------- | --------------------------------------------- |
| id        | integer |                                               |
| offer\_id | integer | A string that uniquely identifies this offer. |
| name      | string  | Mobile Carrier to be targeted                 |

## Example request <a href="#example-request" id="example-request"></a>

**Request POST** <https://{networkname}.api.offerslook.com/v1/offers/378901/carriers>

```
{
    "name":"018 xphone"
}
```

## Example response <a href="#example-response" id="example-response"></a>

```
    {
    "code": 0,
    "message": "Success",
    "data": {
        "offer_carrier": {
            "id": 21,
            "offer_id": 378901,
            "name": "018 xphone"
        }
    }
}
```
