v1

latestOpenAPI 3.0.22026-07-24113565544.0 KB
Deposits

Retrieve Recurring Deposits

Retrieves Recurring Deposits details by recurringID.

get/funding/recurring-deposits/{recurringID}

Path parameters

recurringIDstring required

A unique identifier for the user's recurring bank deposit.

Response

Fetching recurring deposit schedule was successful.

idstring

A unique identifier of the recurring deposit.

currency'USD'

The name of the currency in abbreviation form.

amountnumber

The amount of the recurring deposit.

frequency'BIWEEKLY' | 'DAILY' | 'MONTHLY' | 'MONTHLY_FIRST' | 'MONTHLY_MIDDLE' | 'QUARTERLY'

The recurring deposit frequency; only available for ACH deposits. Note: For retirement accounts, recurring schedules are restricted to CURRENT_YEAR contributions only.

bankAccountIDstring

The unique DriveWealth identifier that identifies each linked bank account.

activeboolean

True, if the recurring deposit is active.

nextDepositstring

The date of when the next recurring deposit will be triggered.

Example response

{
  "id": "recurring_98be6652-6361-4d4c-905b-06e9ec38d060",
  "currency": "USD",
  "amount": 1075.25,
  "frequency": "MONTHLY_FIRST",
  "bankAccountID": "bank_a4656e60-321e-425b-aa0d-a2e75c38885f",
  "active": true,
  "nextDeposit": "2019-01-15",
  "depositHistory": [
    {
      "depositID": "-DMIQY",
      "currency": "USD",
      "status": "PENDING",
      "created": "2022-12-11T22:28:21.810Z",
      "updated": "2022-12-11T22:28:21.810Z",
      "createdBy": "b25f0d36-b4e4-41f8-b3d9-9249e46402cd",
      "metaAccountInfo": "Automated DAILY recurring deposit for b25f0d3... |MyBank Premier Checking|****5204"
    }
  ]
}