Google Search Console Connector
Documentation
Version: 1
Documentation
Endpoint

Get Sites


Name

get_sites

Description

No description available

Related Tables

Sites

Parameters

Parameter Label Required Options Description
There are no parameters

Output Columns

Label Data Type (SSIS) Data Type (SQL) Length Raw Description
SiteUrl DT_WSTR nvarchar(1000) 1000 False
PermissionLevel DT_WSTR nvarchar(100) 100 False
If the column you are looking for is missing, consider customizing Google Search Console Connector.

Input Columns

Label Data Type (SSIS) Data Type (SQL) Length Raw Description
There are no Static columns defined for this endpoint. This endpoint detects columns dynamically at runtime.

Examples

SSIS

Use Google Search Console Connector in API Source component to read data or in API Destination component to read/write data:

Read from Sites table using API Destination

This Endpoint belongs to Sites table, therefore you cannot work with it directly. Use this table and table-operation pair instead:

Google Search Console
Sites
Select
SSIS API Destination - Access table operation

ODBC application

Use these SQL queries in your ODBC application data source:

Get sites

SELECT * FROM get_sites

List Sites

Lists sites registered for google search console

SELECT * FROM Sites

get_sites endpoint belongs to Sites table(s), and can therefore be used via those table(s).

SQL Server

Use these SQL queries in SQL Server after you create a data source in Data Gateway:

Get sites

DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM get_sites';

EXEC (@MyQuery) AT [LS_TO_GOOGLE_SEARCH_CONSOLE_IN_GATEWAY];

List Sites

Lists sites registered for google search console

DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM Sites';

EXEC (@MyQuery) AT [LS_TO_GOOGLE_SEARCH_CONSOLE_IN_GATEWAY];

get_sites endpoint belongs to Sites table(s), and can therefore be used via those table(s).