Popin Export Report API Documentation

Popin Export Report API Documentation

The Popin Export Report API allows you to export and download reports related to customer calls or scheduled video calls for a specific date.


๐Ÿ”— API Endpoint

POST https://dashboard.popin.to/api/v1/export

๐Ÿ” Authentication

You need an API key to access this API.

How to generate your API key:

  1. Log in to your Popin Dashboard

  2. Go to Settings โ†’ Developers

  3. Select Popin Report API

  4. Click Generate API Key


๐Ÿงพ Request Headers

  • X-API-KEY: Your API key

  • Content-Type: application/json


๐Ÿ“ฅ Request Body

The request body must include the following fields:

  • type: Use "call_report" to export call logs, or "scheduled_report" to export scheduled call data

  • date: The date for the report in YYYY-MM-DD format

Example:

{
  "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

  • Both type and date fields are mandatory.

  • The date must be in the format YYYY-MM-DD.

  • Only two values are allowed for type: "call_report" or "scheduled_report".

  • If the API key is missing or invalid, the request will fail with a 401 Unauthorized error.


โœ… Use Cases

  • Automate daily exports of call logs

  • Retrieve scheduled call records for customer tracking

  • Integrate reports with internal systems or dashboards

  • Enable data analysis and reporting workflows

    • Related Articles

    • Popin Insta Call API Documentation

      This documentation covers the Popin Insta Call APIs for capturing users, creating video call links, retrieving available time slots, and scheduling video calls, with full support for advanced routing, tracking, and customization options. ๐Ÿ” ...
    • Case Study: Boosting Video Call Engagement for Chi-Link with Popin's Link Generator API

      Background Chi-Link, a direct-to-consumer (D2C) brand, partnered with Popin to offer personalized shopping experiences through live video calls. While Chi-Link loved the concept of one-on-one interaction with their customers, they faced a significant ...
    • Popin 3P Events Documentation

      Popin provides JavaScript events through window.popinEvent to help track user actions, permissions, and call activities on the widget. Integration Place the following snippet below the Popin integration script: window.popinEvent = (event, data) => { ...
    • Popin - Freshsales Integration Guide

      Introduction Integrating Popin with Freshsales allows you to sync leads and activities seamlessly between the two platforms. Follow this guide to set up the integration quickly. Prerequisites You must have an active Popin account. You must have an ...
    • Popin Zapier Integration Guide

      Popin Zapier App Integration Overview The Popin Zapier App enables you to integrate Popin with thousands of other applications through Zapier. This guide provides instructions on how to connect Popin to Zapier, configure triggers, and use API ...