Delete an offer payout tier of the offer
HTTP method
Endpoint
DELETE
/v1/offers/{offer_id}/offer_events/{event_id}/offer_payout_tiers/{tier_id}
Path parameters
Parameter
Description
offer_id
The unique id for the offer.
event_id
The unique id for the event.
tier_id
The unique id for the tier.
Example request
Request DELETE https://{networkname}.api.offerslook.com/v1/offers/17/offer_events/1/offer_payout_tiers/26
Request DELETE http://{networkname}.api.offerslook.com/v1/offers/17/offer_events/1/offer_payout_tiers/26
Example response
{
"code": 0,
"message": "Success",
"data": {
"offer_payout_tier": [
{
"tier_id": 21,
"offer_id": 17,
"event_id": 1,
"tier_payout": "23",
"tier_percent_payout": "10"
}
]
}
}
Last updated
Was this helpful?