Skip to main content
PATCH
/
networks
/
applications
Approve or Reject Applications
curl --request PATCH \
  --url https://api.eflow.team/v1/networks/applications \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
{
  "network_application_ids": [
    148,
    170
  ],
  "patches": [
    {
      "field_name": "application_status",
      "field_value": "approved"
    }
  ],
  "send_email": false
}
'
{
  "result": true
}

Authorizations

X-Eflow-Api-Key
string
header
required

The Everflow API key generated from the Control Center > Security.

Body

application/json
network_application_ids
integer[]
required

List of application IDs to update.

patches
object[]
required

Array of patch operations to apply.

send_email
boolean

Whether to send an email notification to the affiliate about the status change.

Response

200 - application/json

Applications updated successfully.

result
boolean

Whether the operation was accepted.