Skip to main content
POST
/
affiliates
/
applications
Apply for Offer
curl --request POST \
  --url https://api.eflow.team/v1/affiliates/applications \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
{
  "network_offer_id": 123
}
'
{
  "network_offer_application_id": 123,
  "network_offer_id": 123,
  "status": "<string>"
}

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.

Body

application/json
network_offer_id
integer
required

The ID of the offer to apply for.

message
string

Optional message to include with the application.

Response

OK

network_offer_application_id
integer

Unique identifier for the application.

network_offer_id
integer

The offer ID applied for.

status
string

Application status (e.g. pending, approved, rejected).