Get a list of approved affiliate offer

HTTP method

Endpoint

GET

/v1/offers/{offer_id}/approved

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/approved

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

Example response

    {
      "code": 0,
      "message": "Success",
      "data": {
        "offer_approved": [
          {
            "id": 4825,
            "offer_id": 2786,
            "affiliate_id": 4967
          },
          {
            "id": 4827,
            "offer_id": 2786,
            "affiliate_id": 4970
          },
          {
            "id": 5389,
            "offer_id": 2786,
            "affiliate_id": 4876
          }
        ]
      }
    }

Last updated