Properties
| Name | Type | Description |
|---|---|---|
| callId | string | Unique identifier for the call. |
| title | string | Title of the call. |
| url | string | URL to the call in the Gong web application. |
| started | string | When the call started. |
| duration | number | Duration of the call in seconds. |
| primaryUserId | string | User ID of the primary user on the call. |
| addedToLibraryAt | string | When the call was added to the library folder. |
| addedBy | string | User ID of who added the call to the library. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/LibraryCall",
"title": "LibraryCall",
"type": "object",
"properties": {
"callId": {
"type": "string",
"description": "Unique identifier for the call."
},
"title": {
"type": "string",
"description": "Title of the call."
},
"url": {
"type": "string",
"format": "uri",
"description": "URL to the call in the Gong web application."
},
"started": {
"type": "string",
"format": "date-time",
"description": "When the call started."
},
"duration": {
"type": "number",
"description": "Duration of the call in seconds."
},
"primaryUserId": {
"type": "string",
"description": "User ID of the primary user on the call."
},
"addedToLibraryAt": {
"type": "string",
"format": "date-time",
"description": "When the call was added to the library folder."
},
"addedBy": {
"type": "string",
"description": "User ID of who added the call to the library."
}
}
}