Management
List CDR export deliveries
Experimental. This endpoint is still settling — its request and response shape may change without a deprecation cycle.
Lists the export runs of one target over the last 7 days, newest first. A run covers one period and ends completed with a file at destinationPath, no_changes when the period held no records, or failed.
/management/cdr-export-targets/{cdrExportTargetReference}/deliveriesAuthorization
Authorization: Bearer {token} — an OAuth2 access token from the client-credentials flow. How authentication works
Path parameters
cdrExportTargetReferencestringrequiredCDR export target reference, as returned by GET /management/cdr-export-targets.
Query parameters
limitintegerMaximum number of items to return (1-100)
20cursorstringOpaque cursor token for fetching the next page. Pass the nextCursor value from a previous response.
Responses
200List of export deliveriesapplication/jsonShow response bodyHide response body
dataarray of CdrExportDeliveryrequiredShow propertiesHide properties
periodFromstring · date-timerequiredStart of the period this run covers.
periodTostring · date-timerequiredEnd of the period this run covers.
statusstringrequiredpreparing and pending are in flight, retrying will run again at nextAttemptAt, completed wrote a file to destinationPath, no_changes found no records for the period and wrote nothing, failed gave up.
preparingpendingretryingcompletedno_changesfaileddestinationPathstring | nullrequiredObject path of the written file in the bucket. Null until the run completes.
rowCountinteger | nullrequiredRecords in the written file.
objectSizeBytesinteger | nullrequiredcrc32cstring | nullrequiredBase64 CRC32C checksum of the written file, as Google Cloud Storage reports it.
attemptCountintegerrequirednextAttemptAtstring | null · date-timerequiredlastAttemptedAtstring | null · date-timerequiredcompletedAtstring | null · date-timerequiredcreatedAtstring · date-timerequiredpaginationobjectrequiredShow propertiesHide properties
limitintegerrequiredMaximum items per page
hasMorebooleanrequiredWhether there are more items after this page
nextCursorstring | nullrequiredOpaque cursor token for the next page. Null when there are no more results.
400Bad request - invalid parameters401Unauthorized - missing or invalid API key404Resource not found429Rate limit exceeded500Internal server error