Skip to main content
GET
/
api
/
syncs
/
{syncId}
/
records
/
{recordId}
/
content
Download Content
curl --request GET \
  --url https://sync.useparagon.com/api/syncs/{syncId}/records/{recordId}/content \
  --header 'Authorization: Bearer <token>'
This endpoint works with the following Synced Objects:
  • File: Downloads a synced file from a File Storage integration.
  • Ticket: Downloads a ZIP archive of a ticket’s content and attachments. The archive will include:
    • A Markdown file containing the ticket’s properties, content body, and full list of comments
    • A folder of attachments/ with files that were attached to this ticket

Authorizations

Authorization
string
header
required

Paragon User Token. Add to the Authorization header of your requests.

Path Parameters

syncId
string
required

ID of the Sync

recordId
string
required

ID (Sync-generated UUID, not external ID) of the file to download

Response

200

The response will be the binary content of the file. The Content-Type response header will vary based on the MIME type of the file.

I