This is legacy documentation, and may not be complete. To see the latest documentation, if you are a marketer, refer to the Marketers site. If you are a measurement partner, refer to the Measurement Partners site.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-09-18 UTC."],[[["\u003cp\u003eLists ads data customers accessible from a specified customer using an HTTP GET request.\u003c/p\u003e\n"],["\u003cp\u003eThe request requires specifying the parent customer in the path and allows optional pagination using query parameters.\u003c/p\u003e\n"],["\u003cp\u003eThe response includes a list of ads data customers and a token for retrieving subsequent pages, if available.\u003c/p\u003e\n"],["\u003cp\u003eUsers need to be authorized with the \u003ccode\u003ehttps://www.googleapis.com/auth/adsdatahub\u003c/code\u003e scope to access this functionality.\u003c/p\u003e\n"]]],["The core content outlines the process of listing ads data customers. A `GET` request is made to `https://adsdatahub.googleapis.com/v1/{parent=customers/*}/adsDataCustomers`, with the required `parent` path parameter specifying the associated customer. Optional query parameters, `pageSize` and `pageToken`, control result pagination. The request body must be empty. A successful response contains an array of `adsDataCustomers` objects and a `nextPageToken` for subsequent pages. Authorization requires the `https://www.googleapis.com/auth/adsdatahub` OAuth scope.\n"],null,["# Method: customers.adsDataCustomers.list\n\n- [HTTP request](#body.HTTP_TEMPLATE)\n- [Path parameters](#body.PATH_PARAMETERS)\n- [Query parameters](#body.QUERY_PARAMETERS)\n- [Request body](#body.request_body)\n- [Response body](#body.response_body)\n - [JSON representation](#body.ListAdsDataCustomersResponse.SCHEMA_REPRESENTATION)\n- [Authorization scopes](#body.aspect)\n\nLists ads data customers accessible from the customer.\n\n### HTTP request\n\n`GET https://adsdatahub.googleapis.com/v1/{parent=customers/*}/adsDataCustomers`\n\nThe URL uses [gRPC Transcoding](https://google.aip.dev/127) syntax.\n\n### Path parameters\n\n| Parameters ||\n|----------|--------------------------------------------------------------------------------------------------------|\n| `parent` | `string` Required. The customer associated with these ads data customers. Format: customers/{customer} |\n\n### Query parameters\n\n| Parameters ||\n|-------------|--------------------------------------------------------------------------------------------------------------------------|\n| `pageSize` | `integer` Maximum number of items to return. If 0, the server will determine the number of ads data customers to return. |\n| `pageToken` | `string` Page token, returned by previous call, to request the next page of results, if any. |\n\n### Request body\n\nThe request body must be empty.\n\n### Response body\n\nResponse to a ListAdsDataCustomersRequest request. Contains the ads data customers accessible by the customer.\n\nIf successful, the response body contains data with the following structure:\n\n| JSON representation |\n|------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ``` { \"adsDataCustomers\": [ { object (/ads-data-hub/reference/rest/v1/customers.adsDataCustomers#AdsDataCustomer) } ], \"nextPageToken\": string } ``` |\n\n| Fields ||\n|----------------------|------------------------------------------------------------------------------------------------------------------------------------------|\n| `adsDataCustomers[]` | `object (`[AdsDataCustomer](/ads-data-hub/reference/rest/v1/customers.adsDataCustomers#AdsDataCustomer)`)` A list of ads data customers. |\n| `nextPageToken` | `string` A token that can be used to request the next results page. This field is empty if there are no additional results. |\n\n### Authorization scopes\n\nRequires the following OAuth scope:\n\n- `https://www.googleapis.com/auth/adsdatahub`"]]