Add a new carrier for offer

HTTP method

Endpoint

POST

/v1/offers/{offer_id}/carriers

Path parameters

Parameter

Description

offer_id

The unique id for the offer.

Request body parameters

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

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 POST https://{networkname}.api.offerslook.com/v1/offers/378901/carriers

{
    "name":"018 xphone"
}

Example response

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

Last updated