Get a list of blocked affiliate offer

HTTP method

Endpoint

GET

/v1/offers/{offer_id}/blocked

Path parameters

Parameter

Description

offer_id

The unique id for the offer.

Response body parameters

Field

Type

Description

id

integer

offer_id

integer

Offer id.

affiliate_id

integer

Affiliate id.

Example request

Request GET https://{networkname}.api.offerslook.com/v1/offers/2786/blocked

Request GET http://{networkname}.api.offerslook.com/v1/offers/2786/blocked

Example response

    {
      "code": 0,
      "message": "Success",
      "data": {
        "offer_blocked": [
          {
            "id": 4828,
            "offer_id": 2786,
            "affiliate_id": 4981
          },
          {
            "id": 4829,
            "offer_id": 2786,
            "affiliate_id": 4964
          },
          {
            "id": 4844,
            "offer_id": 2786,
            "affiliate_id": 4982
          }
        ]
      }
    }

Last updated