Popin Export Report API Documentation
The Popin Export Report API allows you to export and download reports related to:
Customer call logs
Scheduled video calls
Reports can be fetched for a specific date using a simple API request.
π API Endpoint
POST https://dashboard.popin.to/api/v1/export
π Authentication
You must use an API key to access this endpoint.
π How to Generate Your API Key:
Log in to your Popin Dashboard
Navigate to Settings β Developers
Select Popin Report API
Click Generate API Key
π§Ύ Request Headers
X-API-KEY
Your API key
Content-Type
application/json
π₯ Request Body
type
string
β Yes
"call_report"
for call logs or "scheduled_report"
for scheduled calls
date
string
β Yes
Report date in YYYY-MM-DD
format
π¦ Example Request Body
{
"type": "call_report",
"date": "2025-07-04"
}
π§ͺ Sample cURL Request
curl --location 'https://dashboard.popin.to/api/v1/export' \
--header 'X-API-KEY: <your-api-key>' \
--header 'Content-Type: application/json' \
--data '{
"type": "call_report",
"date": "2025-07-04"
}'
Replace
<your-api-key>
with your actual API key.
π Important Notes
type
anddate
are mandatory fields.The
date
must be in YYYY-MM-DD format.Allowed
type
values:call_report
scheduled_report
If the API key is missing or invalid, the response will return:
401 Unauthorized
β
Use Cases
π Automate daily exports of call logs.
π Retrieve scheduled call data for internal review or tracking.
π Integrate reports with internal CRMs or dashboards.
π Enable data-driven decision-making through exports.
Last updated