Skip to main content
POST
/
networks
/
billings
/
affiliates
/
payments
Create Payment Batch
curl --request POST \
  --url https://api.eflow.team/v1/networks/billings/affiliates/payments \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
{
  "invoice_ids": [
    1,
    2,
    3
  ]
}
'

Authorizations

X-Eflow-Api-Key
string
header
required

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

Body

application/json
invoice_ids
integer[]

Array of invoice IDs to include in the payment batch.

Response

200

Payment batch created successfully.