Skip to main content
GET
/
agent
/
{agentId}
/
meeting-data
cURL
curl --request GET \
  --url https://your-hosted-ip/api/v1/agent/{agentId}/meeting-data \
  --header 'Authorization: <api-key>'
{
  "agent": {
    "agentId": "<string>",
    "agentName": "<string>",
    "meetingId": "<string>",
    "meetingUrl": "<string>",
    "webhookUrl": "<string>",
    "platform": "<string>",
    "transcriptionProvider": {
      "name": "<string>"
    }
  },
  "recording": {
    "url": "<string>",
    "startedAt": "2023-11-07T05:31:56Z",
    "completedAt": "2023-11-07T05:31:56Z"
  },
  "participants": [
    {
      "name": "<string>",
      "meetingRole": "<string>"
    }
  ],
  "createdAt": "2023-11-07T05:31:56Z",
  "statusChanges": [
    {
      "code": "<string>",
      "sub_code": "<string>",
      "createdAt": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Use the format 'Token ' for authentication.

Path Parameters

agentId
string
required

The ID of the agent whose meeting data is being fetched

Response

Meeting data successfully fetched for the agent

agent
object
recording
object
participants
object[]
createdAt
string<date-time>

When the meeting data was created

statusChanges
object[]