Skip to main content
POST
/
networks
/
billings
/
affiliates
/
summary
Get Invoice Summary
curl --request POST \
  --url https://api.eflow.team/v1/networks/billings/affiliates/summary \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
{
  "filters": {
    "status": "unpaid"
  }
}
'
{
  "total_count": 123,
  "balance": 123,
  "billed": 123,
  "paid": 123
}
Get aggregated summary totals for partner invoices matching the specified filters. Returns counts and totals for balance, billed, and paid amounts. Accepts the same request body as the invoice search endpoint.

Authorizations

X-Eflow-Api-Key
string
header
required

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

Body

application/json
search_terms
object[]

Text search filters (same as the invoicestable endpoint).

filters
object

Filters (same as the invoicestable endpoint).

Response

200 - application/json
total_count
integer

Total number of matching invoices.

balance
number<double>

Total outstanding balance.

billed
number<double>

Total billed amount.

paid
number<double>

Total paid amount.