Skip to main content
POST
/
affiliates
/
dashboard
/
summary
Dashboard Summary
curl --request POST \
  --url https://api.eflow.team/v1/affiliates/dashboard/summary \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
{
  "timezone_id": 67
}
'
{
  "revenue": {
    "today": 123,
    "yesterday": 123,
    "current_month": 123,
    "last_month": 123,
    "trending_percentage": 123
  },
  "click": {
    "today": 123,
    "yesterday": 123,
    "current_month": 123,
    "last_month": 123,
    "trending_percentage": 123
  },
  "conversion": {
    "today": 123,
    "yesterday": 123,
    "current_month": 123,
    "last_month": 123,
    "trending_percentage": 123
  },
  "cvr": {
    "today": 123,
    "yesterday": 123,
    "current_month": 123,
    "last_month": 123,
    "trending_percentage": 123
  },
  "events": {
    "today": 123,
    "yesterday": 123,
    "current_month": 123,
    "last_month": 123,
    "trending_percentage": 123
  },
  "evr": {
    "today": 123,
    "yesterday": 123,
    "current_month": 123,
    "last_month": 123,
    "trending_percentage": 123
  },
  "impression": {
    "today": 123,
    "yesterday": 123,
    "current_month": 123,
    "last_month": 123,
    "trending_percentage": 123
  }
}

Authorizations

X-Eflow-Api-Key
string
header
required

The affiliate's API key generated from the Affiliate Portal. Uses the same X-Eflow-Api-Key header as the Network API, but the key belongs to the affiliate user rather than the network admin.

Body

application/json
timezone_id
integer
required

Timezone identifier for the summary calculations.

Response

200 - application/json

OK

revenue
object

A dashboard metric with period comparisons and trend.

click
object

A dashboard metric with period comparisons and trend.

conversion
object

A dashboard metric with period comparisons and trend.

cvr
object

A dashboard metric with period comparisons and trend.

events
object

A dashboard metric with period comparisons and trend.

evr
object

A dashboard metric with period comparisons and trend.

impression
object

A dashboard metric with period comparisons and trend.