- 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]. |