Skip to main content
GET
/
api
/
v1
/
accounts
/
{account_id}
/
campaigns
/
{id}
/
campaign_analytics
Show campaign analytics
curl --request GET \
  --url https://connect.voxys.ai/api/v1/accounts/{account_id}/campaigns/{id}/campaign_analytics \
  --header 'api_access_token: <api-key>'
{
  "id": 123,
  "campaign_id": 123,
  "total_sent": 123,
  "total_delivered": 123,
  "total_read": 123,
  "total_failed": 123,
  "delivery_rate": 123,
  "read_rate": 123,
  "executions": [
    {
      "execution_id": 123,
      "status": "<string>",
      "started_at": "2023-11-07T05:31:56Z",
      "completed_at": "2023-11-07T05:31:56Z"
    }
  ]
}

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.

Response

Campaign analytics

id
integer
campaign_id
integer
total_sent
integer
total_delivered
integer
total_read
integer
total_failed
integer
delivery_rate
number<float>
read_rate
number<float>
executions
object[]