Find a Log by ID
GET/logs/:id
Find a log by ID.
Permissions
The API token must include the following scopes: Video.
Request
Path Parameters
id uuidrequired
Unique ID of the log
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
id uuid
A unique identifier for the log
source string
Source of this log entry.
type string
Type of this log entry.
url string
URL for the resource associated with this log entry (if available)
room_name string
A named unique identifier for the room. Allowed characters: A-Za-z0-9_-
. Maximum of 100 characters.
status string
start_time date-time
end_time date-time
charge number
charge_details
object[]
Details on charges associated with this log.
description string
Description for this charge.
charge number
Charged amount.
created_at date-time
updated_at date-time
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"source": "realtime-api",
"type": "video_conference_session",
"url": "string",
"room_name": "my_room",
"status": "completed",
"start_time": "2024-07-29T15:51:28.071Z",
"end_time": "2024-07-29T15:51:28.071Z",
"charge": "0.01",
"charge_details": [],
"created_at": "2024-07-29T15:51:28.071Z",
"updated_at": "2024-07-29T15:51:28.071Z"
}
Loading...