POST /transfer/recurring/create
Use the /transfer/recurring/create
endpoint to initiate a new recurring transfer. This capability is not currently supported for Transfer UI or Platform Payments (beta) customers.
Servers
- https://production.plaid.com
- https://sandbox.plaid.com
Request headers
Name | Type | Required | Description |
---|---|---|---|
Content-Type |
String | Yes |
The media type of the request body.
Default value: "application/json" |
Request body fields
Name | Type | Required | Description |
---|---|---|---|
device |
Object | No |
Information about the device being used to initiate the authorization. |
device.ip_address |
String | Yes |
The IP address of the device being used to initiate the authorization. |
device.user_agent |
String | Yes |
The user agent of the device being used to initiate the authorization. |
network |
String | Yes |
Networks eligible for recurring transfers. Possible values:
|
description |
String | Yes |
The description of the recurring transfer. |
client_id |
String | No |
Your Plaid API |
schedule |
Object | Yes |
The schedule that the recurring transfer will be executed on. |
schedule.interval_execution_day |
Integer | Yes |
The day of the interval on which to schedule the transfer. If the If the The transfer will be originated on the next available banking day if the designated day is a non banking day. |
schedule.start_date |
String | Yes |
A date in ISO 8601 format (YYYY-MM-DD). The recurring transfer will begin on the first For |
schedule.end_date |
String | No |
A date in ISO 8601 format (YYYY-MM-DD). The recurring transfer will end on the last |
schedule.interval_unit |
String | Yes |
The unit of the recurring interval. Possible values:
|
schedule.interval_count |
Integer | Yes |
The number of recurring |
user_present |
Boolean | No |
If the end user is initiating the specific transfer themselves via an interactive UI, this should be |
test_clock_id |
String | No |
Plaid’s unique identifier for a test clock. This field may only be used when using |
idempotency_key |
String | Yes |
A random key provided by the client, per unique recurring transfer. Maximum of 50 characters. The API supports idempotency for safely retrying requests without accidentally performing the same operation twice. For example, if a request to create a recurring fails due to a network connection error, you can retry the request with the same idempotency key to guarantee that only a single recurring transfer is created. |
iso_currency_code |
String | No |
The currency of the transfer amount. The default value is "USD". |
user |
Object | Yes |
The legal name and other information for the account holder. |
user.email_address |
String | No |
The user's email address. |
user.legal_name |
String | Yes |
The user's legal name. |
user.address |
Object | No |
The address associated with the account holder. |
user.address.region |
String | No |
The state or province (e.g., "CA"). |
user.address.postal_code |
String | No |
The postal code (e.g., "94103"). |
user.address.country |
String | No |
A two-letter country code (e.g., "US"). |
user.address.street |
String | No |
The street number and name (i.e., "100 Market St."). |
user.address.city |
String | No |
Ex. "San Francisco" |
user.phone_number |
String | No |
The user's phone number. |
amount |
String | Yes |
The amount of the transfer (decimal string with two digits of precision e.g. "10.00"). When calling |
ach_class |
String | No |
Specifies the use case of the transfer. Required for transfers on an ACH network. For more details, see ACH SEC codes. Codes supported for credits:
Possible values:
|
type |
String | Yes |
The type of transfer. This will be either Possible values:
|
funding_account_id |
String | No |
Specify the account used to fund the transfer. Customers can find a list of |
account_id |
String | Yes |
The Plaid |
access_token |
String | Yes |
The Plaid |
secret |
String | No |
Your Plaid API |
How to start integrating
- Add HTTP Task to your workflow definition.
- Search for the API you want to integrate with and click on the name.
- This loads the API reference documentation and prepares the Http request settings.
- Click Test request to test run your request to the API and see the API's response.