microdeposits

Create a microdeposit

Use this endpoint to create a microdeposit. The response will include the new microdeposit record with a status of INITIATED.

post/users/{user_guid}/micro_deposits

Path parameters

user_guidstring required

The unique identifier for the user. Defined by MX.

Request body

Example request

{
  "micro_deposit": {
    "account_number": "3331261",
    "account_type": "CHECKING",
    "routing_number": "091000019",
    "account_name": "My test account",
    "email": "joshyboy2@example.com",
    "first_name": "Joshy",
    "last_name": "Grobanne"
  }
}

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