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/{microdeposit_guid}/verify

Path parameters

microdeposit_guidstring required

The unique identifier for the microdeposit. Defined by MX.

Request body

Response

OK

Example response

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

Changes