Get an offer payout tier of the affiliate

HTTP method

Endpoint

GET

/v1/offer_payout_tiers/{tier_id}/affiliates

Path parameters

Parameter

Description

tier_id

The unique id for the offer payout tier.

Response body parameters

Field

Type

Description

tier_id

integer

Offer payout tier id.

affiliate_id

integer

Affiliate id.

Example request

Request POST https://{networkname}.api.offerslook.com/v1/offer_payout_tiers/27/affiliates

Request POST http://{networkname}.api.offerslook.com/v1/offer_payout_tiers/27/affiliates

Example response

    {
      "code": 0,
      "message": "Success",
      "data": {
        "offer_payout_tier_affiliate": [
          {
            "tier_id": 27,
            "affiliate_id": 5
          },
          {
            "tier_id": 27,
            "affiliate_id": 6
          },
          {
            "tier_id": 27,
            "affiliate_id": 7
          }
        ]
      }
    }

Last updated