Skip to main content
GET
/
api
/
syncs
/
{syncId}
/
records
/
{recordId}
Get Synced Record
curl --request GET \
  --url https://sync.useparagon.com/api/syncs/{syncId}/records/{recordId} \
  --header 'Authorization: Bearer <token>'
{
  "data": "{ /* See schema in Synced Objects */ }"
}

Documentation Index

Fetch the complete documentation index at: https://docs.useparagon.com/llms.txt

Use this file to discover all available pages before exploring further.

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 record

Response

200 - application/json

Synced record data

data
object

The data of the record, e.g. File Metadata or CRM Contact properties. See schemas in Synced Objects for the available fields.

Example:

"{ /* See schema in Synced Objects */ }"