REST Resource: customers.tables

  • Ads Data Hub (ADH) Table resource defines a queriable table with a unique name, a fully qualified path, and a list of columns.

  • The Table resource can be represented in JSON format including details like name, tablePath, and columns.

  • ADH provides methods to retrieve a specific table using get and to list accessible tables for a customer using list.

Resource: Table

Defines a table that can be queried.

JSON representation
{
  "name": string,
  "tablePath": string,
  "columns": [
    {
      object (Column)
    }
  ]
}
Fields
name

string

Name that uniquely identifies a table. It has the form customers/[customerId]/tables/[tablePath], e.g. 'customers/123/tables/adh.google_ads_impressions'.

tablePath

string

Fully qualified table path, e.g. 'adh.google_ads_impressions'.

columns[]

object (Column)

A list of table columns.

Methods

get

Retrieves the requested Ads Data Hub table.

list

Lists the Ads Data Hub tables to which the specified customer has access.