Skip to main content
PUT
/
affiliates
/
offers
/
{offerId}
/
termsconditions
Accept Offer Terms
curl --request PUT \
  --url https://api.eflow.team/v1/affiliates/offers/{offerId}/termsconditions \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
{
  "accepted": true
}
'
{
  "success": true,
  "network_offer_id": 123
}

Authorizations

X-Eflow-Api-Key
string
header
required

The affiliate's API key generated from the Affiliate Portal. Uses the X-Eflow-Api-Key header.

Path Parameters

offerId
integer
required

The numeric ID of the offer whose terms to accept.

Body

application/json
accepted
boolean
default:true

Whether the terms are being accepted.

Response

OK

success
boolean

Whether the terms were successfully accepted.

network_offer_id
integer

The offer ID for which terms were accepted.