Skip to content

Commit 4591355

Browse files
author
github-actions
committed
Update REST API documentation Thu Mar 19 16:56:38 UTC 2026
1 parent 28f62e0 commit 4591355

1 file changed

Lines changed: 103 additions & 0 deletions

File tree

restapi.json

Lines changed: 103 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3105,6 +3105,109 @@
31053105
}
31063106
}
31073107
},
3108+
"/api/v2/analytics/dashboard": {
3109+
"get": {
3110+
"tags": [
3111+
"analytics"
3112+
],
3113+
"summary": "Gets dashboard analytics statistics.",
3114+
"description": "🚧 **Status: Beta** – This method is under development. Avoid using in production. Returns dashboard cards with aggregate analytics metrics.",
3115+
"operationId": "9d12b324dd31b9672eb96506e88a4147",
3116+
"parameters": [
3117+
{
3118+
"name": "php-auth-pw",
3119+
"in": "header",
3120+
"description": "Session key obtained from login",
3121+
"required": true,
3122+
"schema": {
3123+
"type": "string"
3124+
}
3125+
}
3126+
],
3127+
"responses": {
3128+
"200": {
3129+
"description": "Success",
3130+
"content": {
3131+
"application/json": {
3132+
"schema": {
3133+
"properties": {
3134+
"total_subscribers": {
3135+
"properties": {
3136+
"value": {
3137+
"type": "integer",
3138+
"example": 48294
3139+
},
3140+
"change_vs_last_month": {
3141+
"type": "number",
3142+
"format": "float",
3143+
"example": 12.5
3144+
}
3145+
},
3146+
"type": "object"
3147+
},
3148+
"active_campaigns": {
3149+
"properties": {
3150+
"value": {
3151+
"type": "integer",
3152+
"example": 12
3153+
},
3154+
"change_vs_last_month": {
3155+
"type": "number",
3156+
"format": "float",
3157+
"example": 0
3158+
}
3159+
},
3160+
"type": "object"
3161+
},
3162+
"open_rate": {
3163+
"properties": {
3164+
"value": {
3165+
"type": "number",
3166+
"format": "float",
3167+
"example": 12
3168+
},
3169+
"change_vs_last_month": {
3170+
"type": "number",
3171+
"format": "float",
3172+
"example": 0
3173+
}
3174+
},
3175+
"type": "object"
3176+
},
3177+
"bounce_rate": {
3178+
"properties": {
3179+
"value": {
3180+
"type": "number",
3181+
"format": "float",
3182+
"example": 12
3183+
},
3184+
"change_vs_last_month": {
3185+
"type": "number",
3186+
"format": "float",
3187+
"example": 0
3188+
}
3189+
},
3190+
"type": "object"
3191+
}
3192+
},
3193+
"type": "object"
3194+
}
3195+
}
3196+
}
3197+
},
3198+
"403": {
3199+
"description": "Unauthorized",
3200+
"content": {
3201+
"application/json": {
3202+
"schema": {
3203+
"$ref": "#/components/schemas/UnauthorizedResponse"
3204+
}
3205+
}
3206+
}
3207+
}
3208+
}
3209+
}
3210+
},
31083211
"/api/v2/t/open.gif": {
31093212
"get": {
31103213
"tags": [

0 commit comments

Comments
 (0)