Skip to main content
GET
/
api
/
v2
/
accounts
/
{account_id}
/
outbound_reports
Outbound message timeseries
curl --request GET \
  --url https://connect.voxys.ai/api/v2/accounts/{account_id}/outbound_reports \
  --header 'api_access_token: <api-key>'
{
  "data": [
    {
      "timestamp": 123,
      "sent": 123,
      "delivered": 123,
      "read": 123,
      "failed": 123
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://developers.voxys.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

api_access_token
string
header
required

All API requests must include the api_access_token header with a valid agent or administrator token.

Query Parameters

since
integer
required

Start timestamp (Unix epoch)

until
integer
required

End timestamp (Unix epoch)

group_by
enum<string>

Time grouping granularity

Available options:
day,
week,
month
campaign_id
integer

Filter by campaign ID

template_name
string

Filter by template name

Response

Timeseries data

data
object[]