Firsty

Search...

Search...

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.

get/management/cdr-export-targets/{cdrExportTargetReference}/deliveries

Authorization

Authorization: Bearer {token} — an OAuth2 access token from the client-credentials flow. How authentication works

Path parameters

cdrExportTargetReferencestringrequired

CDR export target reference, as returned by GET /management/cdr-export-targets.

Query parameters

limitinteger

Maximum number of items to return (1-100)

Default20
cursorstring

Opaque cursor token for fetching the next page. Pass the nextCursor value from a previous response.

Responses

200List of export deliveriesapplication/json
Show response body
dataarray of CdrExportDeliveryrequired
Show properties
periodFromstring · date-timerequired

Start of the period this run covers.

periodTostring · date-timerequired

End of the period this run covers.

statusstringrequired

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

Optionspreparingpendingretryingcompletedno_changesfailed
destinationPathstring | nullrequired

Object path of the written file in the bucket. Null until the run completes.

rowCountinteger | nullrequired

Records in the written file.

objectSizeBytesinteger | nullrequired
crc32cstring | nullrequired

Base64 CRC32C checksum of the written file, as Google Cloud Storage reports it.

attemptCountintegerrequired
nextAttemptAtstring | null · date-timerequired
lastAttemptedAtstring | null · date-timerequired
completedAtstring | null · date-timerequired
createdAtstring · date-timerequired
paginationobjectrequired
Show properties
limitintegerrequired

Maximum items per page

hasMorebooleanrequired

Whether there are more items after this page

nextCursorstring | nullrequired

Opaque 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