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"
  }
}
'
{
  "count": 123,
  "balance": 123,
  "billed": 123,
  "paid": 123
}

Authorizations

X-Eflow-Api-Key
string
header
required

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

Body

application/json
search_terms
object[]
filters
object

Response

200 - application/json

OK

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.