{ "opencollection": "1.0.0", "info": { "name": "Cvent REST APIs — Event Cloud Video API", "version": "ea" }, "items": [ { "info": { "name": "Video", "type": "folder" }, "items": [ { "info": { "name": "List Videos", "type": "http" }, "http": { "method": "GET", "url": "https://api-platform.cvent.com/ea/videos", "params": [ { "name": "after", "value": "", "type": "query", "description": "Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store." }, { "name": "before", "value": "", "type": "query", "description": "Used to query records that have been added or updated before this time point." }, { "name": "limit", "value": "", "type": "query", "description": "The maximum number of records to return per page." }, { "name": "token", "value": "", "type": "query", "description": "The continuation token returned from a previous class. This must be a valid UUID v4 if provided.\nThis will override any other pageable parameters provided.\n" }, { "name": "filter", "value": "", "type": "query", "description": "Use filter query parameters to limit results\nto data that matches your criteria. See\n[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.\n\nSupported fields and operators are listed below:\n\n| Field | Operators | Notes |\n|--------------|------------|----------------------------------|\n| id | `eq`, `ne` | |\n| events | `eq`, `ne` | |\n| sessions | `eq`, `ne` | |\n| exhibitors | `eq`, `ne` | |\n| speakers | `eq`, `ne` | |\n| source.id | `eq`, `ne` | |\n| status | `eq`, `ne` | |\n| tags | `eq`, `ne` | |\n| recording.id | `eq`, `ne` | |\n| event.id | `eq`, `ne` | deprecated, use `events` instead |\n\nThe following logical operators are supported for combining filters:\n* and\n* or\n" }, { "name": "deleted", "value": "", "type": "query", "description": "True means only videos marked as deleted will be queried. False means only non-deleted videos will be queried." } ], "auth": { "type": "oauth2", "flow": "authorization_code", "authorizationUrl": "https://api-platform.cvent.com/ea/oauth2/authorize", "accessTokenUrl": "https://api-platform.cvent.com/ea/oauth2/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "Gets a paginated list of videos associated with your account or event." }, { "info": { "name": "List Video Views", "type": "http" }, "http": { "method": "GET", "url": "https://api-platform.cvent.com/ea/videos/views", "params": [ { "name": "after", "value": "", "type": "query", "description": "Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store." }, { "name": "before", "value": "", "type": "query", "description": "Used to query records that have been added or updated before this time point." }, { "name": "limit", "value": "", "type": "query", "description": "The maximum number of records to return per page." }, { "name": "token", "value": "", "type": "query", "description": "The continuation token returned from a previous class. This must be a valid UUID v4 if provided.\nThis will override any other pageable parameters provided.\n" }, { "name": "filter", "value": "", "type": "query", "description": "Use filter query parameters to limit results\nto data that matches your criteria. See\n[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.\n\nSupported fields and operators are listed below:\n\n| Field | Operators | Notes |\n|------------------------|-----------|------------|\n| contact.id | `eq` | |\n| solution | `eq` | |\n| device.type | `eq` | deprecated |\n| device.operatingSystem | `eq` | deprecated |\n| video.id | `eq` | |\n| type | `eq` | |\n\nThe filter query supports maximum three fields in a filter expression.\n\nThe following logical operators are supported for combining filters:\n* and\n" } ], "auth": { "type": "oauth2", "flow": "authorization_code", "authorizationUrl": "https://api-platform.cvent.com/ea/oauth2/authorize", "accessTokenUrl": "https://api-platform.cvent.com/ea/oauth2/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "Gets a paginated list of video views" }, { "info": { "name": "List Audio Tracks", "type": "http" }, "http": { "method": "GET", "url": "https://api-platform.cvent.com/ea/videos/:videoId/audio-tracks", "params": [ { "name": "videoId", "value": "", "type": "path", "description": "The identifier of a video." } ], "auth": { "type": "oauth2", "flow": "authorization_code", "authorizationUrl": "https://api-platform.cvent.com/ea/oauth2/authorize", "accessTokenUrl": "https://api-platform.cvent.com/ea/oauth2/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "Gets a list of audio tracks for a specific video ID." }, { "info": { "name": "List Video Renditions", "type": "http" }, "http": { "method": "GET", "url": "https://api-platform.cvent.com/ea/videos/:videoId/renditions", "params": [ { "name": "videoId", "value": "", "type": "path", "description": "The identifier of a video." } ], "auth": { "type": "oauth2", "flow": "authorization_code", "authorizationUrl": "https://api-platform.cvent.com/ea/oauth2/authorize", "accessTokenUrl": "https://api-platform.cvent.com/ea/oauth2/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "Gets a list of video renditions for a specific video ID." }, { "info": { "name": "List Text Tracks", "type": "http" }, "http": { "method": "GET", "url": "https://api-platform.cvent.com/ea/videos/:videoId/text-tracks", "params": [ { "name": "videoId", "value": "", "type": "path", "description": "The identifier of a video." } ], "auth": { "type": "oauth2", "flow": "authorization_code", "authorizationUrl": "https://api-platform.cvent.com/ea/oauth2/authorize", "accessTokenUrl": "https://api-platform.cvent.com/ea/oauth2/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "Gets a list of video text tracks for a specific video ID." }, { "info": { "name": "Create Text Track", "type": "http" }, "http": { "method": "POST", "url": "https://api-platform.cvent.com/ea/videos/:videoId/text-tracks", "params": [ { "name": "videoId", "value": "", "type": "path", "description": "The identifier of a video." } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "oauth2", "flow": "authorization_code", "authorizationUrl": "https://api-platform.cvent.com/ea/oauth2/authorize", "accessTokenUrl": "https://api-platform.cvent.com/ea/oauth2/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "Creates a new text track (VTT) object for a specific video. This endpoint does not directly handle the upload of VTT files but instead returns a location URL that you use to perform the upload." }, { "info": { "name": "Update Text Track", "type": "http" }, "http": { "method": "PUT", "url": "https://api-platform.cvent.com/ea/videos/:videoId/text-tracks/:textTrackId", "params": [ { "name": "videoId", "value": "", "type": "path", "description": "The identifier of a video." }, { "name": "textTrackId", "value": "", "type": "path", "description": "The identifier of a video text track." } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "oauth2", "flow": "authorization_code", "authorizationUrl": "https://api-platform.cvent.com/ea/oauth2/authorize", "accessTokenUrl": "https://api-platform.cvent.com/ea/oauth2/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "Updates a specific video text track by ID. This is done by setting the status to Updating within the body of this call,\nwhich will prompt the service to return a signed upload link in the returned entity.\n" } ] } ], "bundled": true }