v50

latestOpenAPI 3.0.0raw.githubusercontent.com2026-01-29166197289.1 KB
microdeposits

Verify a Microdeposit

Use this endpoint to verify the amounts deposited into the account during a microdeposit verification. The verification has not successfully completed until the status is VERIFIED. Poll the /users/{user_guid}/micro_deposits/{micro_deposit_guid} (read microdeposit) endpoint until you see this status or an error state.

put/micro_deposits/{micro_deposit_guid}/verify

Path parameters

micro_deposit_guidstring required

The unique identifier for the microdeposit. Defined by MX.

Request body

Example request

{
  "micro_deposit": {
    "deposit_amount_1": 0.09,
    "deposit_amount_2": 0.09
  }
}

Response

OK

Example response

{
  "micro_deposit": [
    {
      "account_name": "My test account",
      "account_number": "3331261",
      "account_type": "CHECKING",
      "email": "joshyboy2@example.com",
      "first_name": "Joshy",
      "last_name": "Grobanne",
      "routing_number": "091000019",
      "guid": "MIC-09ba578e-8448-4f7f-89e1-b62ff2517edb",
      "institution_code": "mxbank",
      "institution_name": "MX Bank",
      "status": "INITIATED",
      "updated_at": "2023-06-01T19:18:06Z"
    }
  ]
}