Skip to main content
Skip table of contents

API endpoint to extract meeting data in entirety

This endpoint enables the users to fetch the meeting data for a particular event using the GET method.

Method to be used:- GET

Base URL :- https://api-{client-name}.expoplatform.com/

Endpoint:- /api/v2/meetings/export

Parameters to be passed:-
event_id* (integer) → Expoplatform Event id

page(integer) → Page number of the paginated response

per_page(integer) → How many records do you wish to see per page (default = 100 )

accountId → Expoplatform visitor id

time_from → Start time of the date range.This filter works on the Appointment Date and Time

time_to → End time of the date range.This filter works on the Appointment Date and Time

order → Determines if the order should be Ascending or Descending. For Ascending(asc) and for Descending(desc)

order_by → Determines if the records should be sorted on the basis on Account ID(account_id) or Time(time).

Sample Request :-

curl --location 'https://api-newdemo.expoplatform.com/api/v2/meetings/export?event_id=536&page=1&per_page=2&time_from=1682001000&time_to=1682022600&order=asc&order_by=time' \
--header 'Authorization: Basic ********************************' \
--header 'Cookie: AWSALB=JsbRjlhw1l5k0uhb8azlizXvXThPKBeYWQ6xRry776jaGGv+M/Et8KQ3NSJBAUuO2KJ46i3oRiSA2wfXadJPDEHUWtpZs0i5kj0ICfx8Opq0LZL639qTv9NCiZGZ; AWSALBCORS=JsbRjlhw1l5k0uhb8azlizXvXThPKBeYWQ6xRry776jaGGv+M/Et8KQ3NSJBAUuO2KJ46i3oRiSA2wfXadJPDEHUWtpZs0i5kj0ICfx8Opq0LZL639qTv9NCiZGZ; PHPSESSID=3fch9kav2d4j8pkdva6d6805pu'

Sample Response:-

CODE
{
    "code": 200,
    "errors": null,
    "data": {
        "items": [
            {
                "Meeting ID": 13417,
                "Creation Date": "20.04.2023",
                "Creation Time": "09:08",
                "Appointment Date": "20.04.2023",
                "Appointment Time": "15:30",
                "Appointment Status": "incoming",
                "Duration": 15,
                "Location": "Online Room",
                "Confirmed date": "",
                "Canceled date": "",
                "Denial reason": "",
                "Meeting Role": "Receiver",
                "Account ID": 70551,
                "Account Type": "Visitor",
                "Company Name": "",
                "Account Country": "",
                "Account First Name": "cosmopolitan",
                "Account Last Name": "bellagio",
                "Account Job Title": "",
                "Account Category": "Default category",
                "Account Agent": "",
                "Account Email": "cosmobellagio@lennd.com",
                "Account Phone Number": "",
                "Account Rating": "",
                "Account Comment": "",
                "Account Rating Creation Time": "",
                "Account Rating Creation Date": "",
                "Creator": "SuperAdmin"
            },
            {
                "Meeting ID": 13417,
                "Creation Date": "20.04.2023",
                "Creation Time": "09:08",
                "Appointment Date": "20.04.2023",
                "Appointment Time": "15:30",
                "Appointment Status": "pending",
                "Duration": 15,
                "Location": "Online Room",
                "Confirmed date": "",
                "Canceled date": "",
                "Denial reason": "",
                "Meeting Role": "Initiator",
                "Account ID": 70553,
                "Account Type": "Visitor",
                "Company Name": "",
                "Account Country": "",
                "Account First Name": "Vivek",
                "Account Last Name": "Londhe",
                "Account Job Title": "",
                "Account Category": "Default category",
                "Account Agent": "",
                "Account Email": "vclondhe1+001@gmail.com",
                "Account Phone Number": "",
                "Account Rating": "",
                "Account Comment": "",
                "Account Rating Creation Time": "",
                "Account Rating Creation Date": "",
                "Creator": "SuperAdmin"
            }
        ],
        "total_items": 2,
        "limit": 100,
        "first": 1,
        "previous": 1,
        "current": 1,
        "next": 1,
        "last": 1
    },
    "response_id": "1683125749.926185"
}

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.