# Delete a carrier of a offer

| HTTP method | Endpoint                                                         |
| ----------- | ---------------------------------------------------------------- |
| **DELETE**  | **/v1/offers/{offer\_id}/carriers/{offer\_carrier\_target\_id}** |

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

| Parameter                  | Description                            |
| -------------------------- | -------------------------------------- |
| offer\_id                  | The unique id for the offer.           |
| offer\_carrier\_target\_id | The mobile carrier id for the carrier. |

## Response body parameters <a href="#response-body-parameters-2" id="response-body-parameters-2"></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-2" id="example-request-2"></a>

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

**Request DELETE** <http://{networkname}.api.offerslook.com/v1/offers/378901/carriers/20>

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

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