action plaid_bank_transfer_sweep_list { label: "List sweeps" description: "The `/bank_transfer/sweep/list` endpoint fetches information about the sweeps matching the given filters." provider: plaid method: POST path: "/bank_transfer/sweep/list" encoding: json input: { type: "object" description: "BankTransferSweepListRequest defines the request schema for `/bank_transfer/sweep/list`" properties: { client_id: { type: "string" description: "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." } count: { type: "integer" description: "The maximum number of sweeps to return." } end_time: { type: "string" format: "date-time" description: "The end datetime of sweeps to return (RFC 3339 format)." } origination_account_id: { type: "string" description: "If multiple origination accounts are available, `origination_account_id` must be used to specify the account that the sweeps belong to." } secret: { type: "string" description: "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." } start_time: { type: "string" format: "date-time" description: "The start datetime of sweeps to return (RFC 3339 format)." } } } output: { type: "object" description: "BankTransferSweepListResponse defines the response schema for `/bank_transfer/sweep/list`" required: ["request_id", "sweeps"] properties: { request_id: { type: "string" description: "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive." } sweeps: { type: "array" items: { type: "object" description: "BankTransferSweep describes a sweep transfer." required: ["id", "created_at", "amount", "iso_currency_code"] properties: { amount: { type: "string" description: "The amount of the sweep." } created_at: { type: "string" format: "date-time" description: "The datetime when the sweep occurred, in RFC 3339 format." } id: { type: "string" description: "Identifier of the sweep." } iso_currency_code: { type: "string" description: "The currency of the sweep, e.g. \"USD\"." } } } } } } }