Skip to main content
POST
/
contents
/
v1
/
connectors
/
{connector_id}
/
sync
Trigger connector sync
curl --request POST \
  --url https://api.bigdata.com/contents/v1/connectors/{connector_id}/sync \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '
{
  "date_limit": "2026-01-01"
}
'
{
  "connector_id": "019a9612-bfad-758c-884e-37dd8c6ad2cb",
  "date_limit": "2026-01-01",
  "status": "accepted"
}

Documentation Index

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

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

Authorizations

X-API-KEY
string
header
required

Your API key. Include it in every request as the X-API-KEY header. Create and manage keys in the Developer Platform.

Path Parameters

connector_id
string<uuid>
required

UUID of the investment_research or sharepoint connector to resync.

Example:

"019a9612-bfad-758c-884e-37dd8c6ad2cb"

Body

application/json

Body for POST /contents/v1/connectors/{connector_id}/sync. For investment_research connectors, send date_limit. For sharepoint connectors, send an empty object ({}).

date_limit
string<date>

Calendar date (YYYY-MM-DD). Required for investment_research connectors; retriggers broker synchronization including research from this date forward per platform rules. Must be omitted for sharepoint connectors.

Example:

"2026-01-01"

Response

Sync request was accepted and queued for the connector.

Acknowledgement after a sync trigger is accepted.

connector_id
string<uuid>
required

Connector that was targeted.

Example:

"019a9612-bfad-758c-884e-37dd8c6ad2cb"

status
string
required

Processing state of the request (for example accepted when queued).

Example:

"accepted"

date_limit
string<date>

Echo of the requested date limit. Returned only for investment_research connectors.

Example:

"2026-01-01"