Create a new payout of the affiliate

HTTP method

Endpoint

POST

/v1/affiliate_payouts

Note: In the case of Offer pricing type be CPC, event_id assignment and Volume Based Tiers would be unavailable. Volume Based Tiers is only available if event_id=1.

NOTE: Volume Based Tiers only used for CPA, CPS and CPA+CPS,and the affiliate payout ,when offers pricing type is CPC cannot create Volume Based Tiers.

Request body parameters

Field

Type

Description

Nullable

affiliate_payout

offer_id

integer

No

affiliate_id

integer

No

event_id

integer

Event id.

current_payout

string

Payout.

percent_payout

string

Percent payout.

affiliate_tier

user_id

integer

No

time_interval_type

integer

Time interval type. 1: Daily ; 2: Weekly ; 3: Monthly

No

effective_time

string

When Time Interval Type value is 0 that Custom time can be active.Print type of time must be :YYYY-MM-DD

expiration_time

string

When Time Interval Type value is 0 that Custom time can be active.Print type of time must be :YYYY-MM-DD

tier_item

No

volume_caps

integer

Volume Caps.

No

payout

string

Payout.

percent_payout

string

Percent payout.

Response body parameters

Field

Type

Description

affiliate_payout

id

integer

Affiliate payout id.

offer_id

integer

Offer id.

affiliate_id

integer

Affiliaite id

event_id

integer

Event id.

current_payout

string

Current payout.

percent_payout

string

Percent payout.

create_time

string

Create time.

affiliate_tier

offer_id

integer

Offer id.

affiliate_id

integer

Affiliate id.

user_id

integer

User id.

time_interval_type

integer

Time interval type. 1: Daily ; 2: Weekly ; 3: Monthly

effective_time

integer

Effective time.

expiration_time

integer

Expiration time.

create_time

integer

Create time.

tier_item

volume_caps

integer

Volume Based Tiers Volume Caps.

payout

string

Volume Based Tiers Payout.

percent_payout

string

Percent payout.

sort

integer

Volume Based Tiers Sort.

range

string

Volume Based Tiers Range.

Example request

Request POST https://{networkname}.api.offerslook.com/v1/affiliate_payouts

Request POST http://{networkname}.api.offerslook.com/v1/affiliate_payouts

    {
      "affiliate_payout": {
        "offer_id": 7,
        "affiliate_id": 7,
        "event_id": 1,
        "current_payout": "33",
        "percent_payout": "10"
      },
      "affiliate_tier": {
        "user_id": 1,
        "time_interval_type": 0,
        "effective_time": "2016-09-03",
        "expiration_time": "2016-10-03",
        "tier_item": [
          {
            "volume_caps": "100",
            "payout": 34,
            "percent_payout": "10"
          },
          {
            "volume_caps": 150,
            "payout": 43,
            "percent_payout": "10"
          }
        ]
      }
    }

Example response

    {
      "code": 0,
      "message": "Success",
      "data": {
        "affiliate_tier": {
          "offer_id": 7,
          "affiliate_id": 7,
          "user_id": 1,
          "time_interval_type": 0,
          "effective_time": 1472832000,
          "expiration_time": 1475510399,
          "create_time": 1467602151,
          "tier_item": [
            {
              "volume_caps": 100,
              "payout": "34",
              "percent_payout": "10"
              "sort": 1,
              "range": "1-100"
            },
            {
              "volume_caps": 150,
              "payout": "43",
              "percent_payout": "10"
              "sort": 2,
              "range": "101-∞"
            }
          ]
        },
        "affiliate_payout": {
          "id": 24,
          "offer_id": 7,
          "affiliate_id": 7,
          "event_id": 1,
          "current_payout": "33",
          "percent_payout": "10",
          "create_time": 1467602151
        }
      }
    }

Last updated