Skip to main content
GET
/
api
/
v1
/
meetings
Fetch Organisation Meetings Api
curl --request GET \
  --url https://services.meetchase.ai/api/v1/meetings \
  --header 'X-API-Key: <api-key>'
[
  {
    "start": "2023-11-07T05:31:56Z",
    "end": "2023-11-07T05:31:56Z",
    "id": 123,
    "exchange_id": 123,
    "campaign": {
      "name": "<string>",
      "id": 123
    },
    "iana_timezone": "<string>",
    "summary": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "meeting_link": "<string>",
    "bot": {
      "email": "[email protected]",
      "first_name": "Alice",
      "last_name": "Smith"
    },
    "contact": {
      "email": "[email protected]",
      "id": 123,
      "first_name": "<string>",
      "last_name": "<string>"
    },
    "user": {
      "email": "[email protected]",
      "id": 123,
      "first_name": "<string>",
      "last_name": "<string>"
    },
    "cancelled": false
  }
]

Authorizations

X-API-Key
string
header
required

Key used to authenticate user API requests.

Query Parameters

start_date
string<date> | null
end_date
string<date> | null

Response

Successful Response

start
string<date-time>
required
end
string<date-time>
required
id
integer
required
exchange_id
integer
required
campaign
BaseCampaign · object
required
Example:
{
"id": 1,
"name": "Lead Generation Campaign"
}
iana_timezone
string
required
summary
string | null
required
created_at
string<date-time>
required
bot
BaseCorrespondent · object
required

Represents the basic contact details of a correspondent.

Example:
{
"email": "[email protected]",
"first_name": "Alice",
"last_name": "Smith"
}
contact
BaseCorrespondent · object
required

Represents the basic contact details of a correspondent.

Example:
{
"email": "[email protected]",
"first_name": "Alice",
"last_name": "Smith"
}
user
BaseCorrespondent · object
required

Represents the basic contact details of a correspondent.

Example:
{
"email": "[email protected]",
"first_name": "Alice",
"last_name": "Smith"
}
cancelled
boolean
default:false