Endpoint Get videos rating
Name
get_rating
Description
No description available [API reference]
Parameters
| Parameter | Required | Options |
|---|---|---|
|
Name:
Label: id |
YES | |
|
Name:
Label: onBehalfOfContentOwner |
Output Columns
| Label | Data Type (SSIS) | Data Type (SQL) | Length | Description |
|---|---|---|---|---|
| videoId |
DT_WSTR
|
nvarchar(50)
|
50 | |
| rating |
DT_WSTR
|
nvarchar(20)
|
20 |
If the column you are looking for is missing, consider customizing YouTube Connector.
Input Columns
| Label | Data Type (SSIS) | Data Type (SQL) | Length | Description | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| There are no Static columns defined for this endpoint. This endpoint detects columns dynamically at runtime. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Examples
SSIS
Use YouTube Connector in API Source or in API Destination SSIS Data Flow components to read or write data.
API Source
API Source - YouTube
Read and write YouTube data effortlessly. Integrate, manage, and automate videos, playlists, channels, and analytics — almost no coding required.
YouTube
Get videos rating
| Required Parameters | |
|---|---|
| id | Fill-in the parameter... |
| Optional Parameters | |
| onBehalfOfContentOwner | |
API Destination
API Destination - YouTube
Read and write YouTube data effortlessly. Integrate, manage, and automate videos, playlists, channels, and analytics — almost no coding required.
YouTube
Get videos rating
| Required Parameters | |
|---|---|
| id | Fill-in the parameter... |
| Optional Parameters | |
| onBehalfOfContentOwner | |
ODBC application
Use these SQL queries in your ODBC application data source:
Get videos rating
SELECT * FROM get_rating
WITH
(
"id" = 'abcd-1234-id'
)
SQL Server
Use these SQL queries in SQL Server after you create a data source in Data Gateway:
Get videos rating
DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM get_rating
WITH
(
"id" = ''abcd-1234-id''
)';
EXEC (@MyQuery) AT [LS_TO_YOUTUBE_IN_GATEWAY];