funding sources

Initiate or Verify micro-deposits

Handles micro-deposit bank verification process. Make a request without a request body to initiate two small deposits to the customer's bank account. Include deposit amounts to verify the received values and complete verification.

post/funding-sources/{id}/micro-deposits

Path parameters

idstring required

The ID of the FS to initiate or verify micro-deposit

Headers

Accept'application/vnd.dwolla.v1.hal+json' required

The media type of the response. Must be application/vnd.dwolla.v1.hal+json

Request body

Example request

{
  "amount1": {
    "value": "0.02",
    "currency": "USD"
  },
  "amount2": {
    "value": "0.03",
    "currency": "USD"
  }
}

Response

successful operation

Changes

Changed in 3 of the 33 revisions of this API.23

    • added the non-success response with the status 403

      response-non-success-status-added

    • added the success response with the status 200

      response-success-status-added

    This revision also has 1 change that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

  • 9c0a7a57012911See the full diff
    • removed subschema #1 from the request body oneOf list

      request-body-one-of-removed

    • added subschema #1: InitiateMicroDeposits to the request body oneOf list

      request-body-one-of-added

    • added the new required header request parameter Accept

      new-required-request-parameter