The new Search Ads 360 Reporting API is now available. Join the
searchads-api-announcements Google group to stay up to date on upcoming enhancements and releases.
Method: customers.customColumns.list
Returns all the custom columns associated with the customer in full detail.
HTTP request
GET https://searchads360.googleapis.com/v0/customers/{customerId}/customColumns
The URL uses gRPC Transcoding syntax.
Path parameters
Parameters |
customerId |
string
Required. The ID of the customer to apply the CustomColumn list operation to.
|
Request body
The request body must be empty.
Response body
Response message for fetching all custom columns associated with a customer.
If successful, the response body contains data with the following structure:
JSON representation |
{
"customColumns": [
{
object (CustomColumn )
}
]
} |
Fields |
customColumns[] |
object (CustomColumn )
The CustomColumns owned by the provided customer.
|
Authorization scopes
Requires the following OAuth scope:
https://www.googleapis.com/auth/doubleclicksearch
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-11-08 UTC.
[null,null,["Last updated 2024-11-08 UTC."],[[["Retrieves detailed information about all custom columns associated with a specific customer."],["Uses an HTTP GET request with the customer ID as a path parameter."],["Requires an empty request body and returns a JSON response containing an array of custom columns."],["Needs authorization with the `https://www.googleapis.com/auth/doubleclicksearch` scope."]]],["This document details retrieving customer-specific custom columns via an API. A `GET` request to `https://searchads360.googleapis.com/v0/customers/{customerId}/customColumns` is made, where `customerId` is a required path parameter. The request body must be empty. A successful response returns a JSON structure with an array of `customColumns` objects containing custom column details, requiring the authorization scope `https://www.googleapis.com/auth/doubleclicksearch`.\n"]]