v1

latestOpenAPI 3.1.02026-07-2268276396.6 KB
Connectors

Trigger connector sync

Queues a new synchronization run for an investment_research or sharepoint connector. For investment_research, send a JSON body with date_limit (calendar date, YYYY-MM-DD) so the broker sync includes research from that date onward according to platform rules. For sharepoint, send an empty JSON body ({}). Only content not already ingested will be synced.

post/contents/v1/connectors/{connector_id}/sync

Path parameters

connector_idstring uuid required
Example:019a9612-bfad-758c-884e-37dd8c6ad2cb

UUID of the investment_research or sharepoint connector to resync.

Request body

date_limitstring 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 request

{
  "date_limit": "2026-01-01"
}

Response

Sync request was accepted and queued for the connector.

connector_idstring uuid required

Connector that was targeted.

date_limitstring date

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

statusstring required

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

Example response

{
  "connector_id": "019a9612-bfad-758c-884e-37dd8c6ad2cb",
  "date_limit": "2026-01-01",
  "status": "accepted"
}