Skip to main content
GET
Get Contact Export

Overview

This endpoint retrieves the current status of a contact export job created with the Create Contact Export endpoint. Once the export is complete, it provides a presigned download URL for the exported file. Poll this endpoint regularly to check when your export is ready for download.

Path Parameters

integer
required
The export ID returned from the Create Contact Export endpoint.Example: 123

Response

Export Status Fields

integer
The unique identifier for this export job
string
Current status of the export jobPossible values:
  • queued - Export job is waiting to be processed
  • processing - Export is currently being generated
  • completed - Export is complete and ready for download
  • failed - Export failed
string
ISO 8601 timestamp when the export was created
string
User-friendly status message (present when status is queued, processing, or failed)

Additional Fields (When Status = completed)

string
Presigned S3 URL to download the export file. This URL expires after 15 minutes for security.The file is in gzipped NDJSON format (Newline-Delimited JSON, compressed with gzip).
string
ISO 8601 timestamp when the export finished processing
string
ISO 8601 timestamp when the download URL will expire (15 minutes from request time)

Example Requests

Example Responses

Queued Export

Completed Export

Failed Export

Status Codes

Notes

  • Rate Limit: This endpoint has a limit of 30 requests per minute per Space. See Rate Limiting for details.
  • Download URL Expiration: The presigned download URL expires 15 minutes after you retrieve it. If it expires, make another GET request to this endpoint to get a fresh URL.
  • Space Isolation: You can only access exports created by your space. Attempting to access another space’s export returns 404.
  • File Security: Export files use UUID-based filenames to prevent enumeration. Download URLs are cryptographically signed and time-limited.
  • Processing Time: Exports typically complete within seconds to a few minutes. Large exports may take longer.

See Also