Authorizations
Headers
Body
TransactionsSyncRequest defines the request schema for /transactions/sync
The access token associated with the Item data is being requested for.
Your Plaid API client_id. The client_id is required and may be provided either in the PLAID-CLIENT-ID header or as part of a request body.
Your Plaid API secret. The secret is required and may be provided either in the PLAID-SECRET header or as part of a request body.
The cursor value represents the last update requested. Providing it will cause the response to only return changes after this update. If omitted, the entire history of updates will be returned, starting with the first-added transactions on the item. Note: The upper-bound length of this cursor is 256 characters of base64.
The number of transaction updates to fetch.
An optional object to be used with the request. If specified, options must not be null.
Response
OK
TransactionsSyncResponse defines the response schema for /transactions/sync
Transactions that have been added to the Item since cursor ordered by ascending last modified time.
Transactions that have been modified on the Item since cursor ordered by ascending last modified time.
Transactions that have been removed from the Item since cursor ordered by ascending last modified time.
Cursor used for fetching any future updates after the latest update provided in this response. The cursor obtained after all pages have been pulled (indicated by has_more being false) will be valid for at least 1 year. This cursor should be persisted for later calls. If transactions are not yet available, this will be an empty string.
Represents if more than requested count of transaction updates exist. If true, the additional updates can be fetched by making an additional request with cursor set to next_cursor. If has_more is true, it’s important to pull all available pages, to make it less likely for underlying data changes to conflict with pagination.
A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.