Skip to main content
GET
/
agent
/
{agentId}
cURL
curl --request GET \
  --url https://your-hosted-ip/api/v1/agent/{agentId} \
  --header 'Authorization: <api-key>'
{
  "url": "<string>",
  "startedAt": "2023-11-07T05:31:56Z",
  "completedAt": "2023-11-07T05:31:56Z",
  "agent": {
    "id": "<string>",
    "accountId": "<string>",
    "workspace": "<string>",
    "statusChanges": [
      {
        "code": "<string>",
        "sub_code": "<string>",
        "createdAt": "2023-11-07T05:31:56Z"
      }
    ],
    "createdAt": "2023-11-07T05:31:56Z"
  },
  "joinParams": {
    "agentId": "<string>",
    "agentName": "<string>",
    "meetingId": "<string>",
    "meetingPassword": "<string>",
    "meetingUrl": "<string>",
    "webhookUrl": "<string>",
    "platform": "<string>",
    "metadata": {},
    "automaticLeave": {
      "EveryoneLeftTimeout": 123,
      "NoOneJoinedTimeout": 123,
      "WaitingRoomTimeout": 123
    },
    "adhoc": true
  }
}

Authorizations

Authorization
string
header
required

Use the format 'Token ' for authentication.

Path Parameters

agentId
string
required

The ID of the agent whose details is being fetched

Response

Agent details successfully fetched for the agent

url
string

URL of the meeting recording

startedAt
string<date-time>

When recording started

completedAt
string<date-time>

When recording completed

agent
object
joinParams
object