Receive webhooks on data updates
Receive webhooks from Nango when new records are available (step-by-step guide).Response
Default behaviour
By default this returns an array of objects in the data model that you queried with some metadata about each record.Headers
The connection ID used to create the connection.
The integration ID used to create the connection (aka Unique Key).
Query Parameters
The data model to fetch
Each record from this method comes with a synchronization cursor in _nango_metadata.cursor
. Save the last fetched record's cursor to track how far you've synced. By providing the cursor to this endpoint, you'll continue syncing from where you left off, receiving only post-cursor changes. This same cursor is used to paginate through the results of this endpoint.
The maximum number of records to return. Defaults to 100.
Filter to only show results that have been added or updated or deleted.
added
, updated
, deleted
Timestamp, e.g. 2023-05-31T11:46:13.390Z. If passed only records modified after this timestamp are returned, otherwise all records are returned.
DEPRECATED (use modified_after) Timestamp, e.g. 2023-05-31T11:46:13.390Z. If passed, only records modified after this timestamp are returned, otherwise all records are returned.
Response
Successfully returned records
The response is of type object
.