Reference

Endpoint Get videos rating


Name

get_rating

Description

No description available [API reference]

Parameters

Parameter Required Options
Name: id

Label: id

YES
Name: onBehalfOfContentOwner

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 / write YouTube data inside your app, perform many Youtube operations without coding using easy to use high performance API Connector for YouTube
YouTube
Get videos rating
Required Parameters
id Fill-in the parameter...
Optional Parameters
onBehalfOfContentOwner
SSIS API Source - Read from table or endpoint

API Destination

API Destination - YouTube
Read / write YouTube data inside your app, perform many Youtube operations without coding using easy to use high performance API Connector for YouTube
YouTube
Get videos rating
Required Parameters
id Fill-in the parameter...
Optional Parameters
onBehalfOfContentOwner
SSIS API Destination - Access table or endpoint

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];