Delete a carrier of a offer

HTTP method

Endpoint

DELETE

/v1/offers/{offer_id}/carriers/{offer_carrier_target_id}

Path parameters

Parameter

Description

offer_id

The unique id for the offer.

offer_carrier_target_id

The mobile carrier id for the carrier.

Response body parameters

Field

Type

Description

id

integer

offer_id

integer

A string that uniquely identifies this offer.

name

string

Mobile Carrier to be targeted

Example request

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

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

Last updated