AI-generated Key Takeaways
-
Returns the percentage of Google data successfully ingested into ADH for a specific date, categorized into percentile buckets.
-
Requires an HTTP GET request with customer ID and date as path and query parameters respectively.
-
Response provides a completion status percentile and the name of the import completion status resource.
-
Requires authorization with the
https://www.googleapis.com/auth/adsdatahub
scope. -
Percentile buckets represent the completion status: less than 95%, at least 95%, at least 99%, and at least 99.9%.
- HTTP request
- Path parameters
- Query parameters
- Request body
- Response body
- Authorization scopes
- Percentile
Returns the percentage of Google data across all customers that has successfully been ingested into ADH on the given date. The returned value is one of the buckets "less than 95%", "at least 95%", "at least 99%", and "at least 99.9%".
HTTP request
GET https://adsdatahub.googleapis.com/v1/{customer=customers/*}/importCompletionStatus
The URL uses gRPC Transcoding syntax.
Path parameters
Parameters | |
---|---|
customer |
Required. Ads Data Hub customer making the request. This is in the form of 'customers/[customerId]'. e.g. 'customers/123'. |
Query parameters
Parameters | |
---|---|
date |
Required. The date for which the completion status is to be returned. It must be in the past. |
timeZone |
Time zone used when determining the period to retrieve results for. Supported values are "America/Los_Angeles" and "America/New_York". Defaults to "America/Los_Angeles". |
Request body
The request body must be empty.
Response body
Response to a customers.getImportCompletionStatus request.
If successful, the response body contains data with the following structure:
JSON representation |
---|
{
"name": string,
"percentile": enum ( |
Fields | |
---|---|
name |
The name of the import completion status resource in the format of 'customers/{id}/importStatus/{date}_{utcOffset}' |
percentile |
Percent of Google data being imported across all ADH customers for a given date that is complete. |
Authorization scopes
Requires the following OAuth scope:
https://www.googleapis.com/auth/adsdatahub
Percentile
Import completion status categories representing a coarse percentile.
Enums | |
---|---|
PERCENTILE_UNSPECIFIED |
Completion status is unknown. |
LESS_THAN_95_PERCENT |
Completion status percentile [0 .. 95.0). |
AT_LEAST_95_PERCENT |
Completion status percentile [0.95 .. 0.99). |
AT_LEAST_99_PERCENT |
Completion status percentile [0.99 .. 0.999). |
AT_LEAST_99_9_PERCENT |
Completion status percentile [0.999 .. 1.0]. |