Skip to content

Verify_Micro_Deposits

Request

Micro-deposits are two small deposits (a maximum of $0.99, a minimum of $0.01, and inclusive) that verify the merchant's business bank account. The values accept a float directly or a string representation of the cents amount. ("0.75" and "0.01")

Requirements: Authentication information, user, and password are required for this endpoint. Sponsor ID will be determined by the authentication information used. The request_user_id should have an admin role on the account.

Security
basicAuth
Path
request_user_idstringrequired
Bodyrequired
micro_deposit_amount_1string, (decimal)^-?\d{0,1}(?:\.\d{0,2})?$required

First Micro-Deposit amount. Order does not matter.

micro_deposit_amount_2string, (decimal)^-?\d{0,1}(?:\.\d{0,2})?$required

Second Micro-Deposit amount. Order does not matter.

external_org_idstring, <= 255 characters
curl -i -X POST \
  -u '<username>:<password>' \
  'https://momnt-api-docs.redocly.app/_mock/docs/openapi/sponsor_merchant_v1/api/v1/sponsor/merchants/payment-detail/verify-micro-deposits/{request_user_id}/' \
  -H 'Content-Type: application/json' \
  -d '{
    "micro_deposit_amount_1": "string",
    "micro_deposit_amount_2": "string",
    "external_org_id": "string"
  }'

Responses

Bodyapplication/json
messagestring, <= 255 charactersrequired
merchant_account_existsbooleanrequired
bank_account_statusstring, <= 255 charactersrequired
last_fourstring, <= 4 charactersrequired
Response
{ "message": "string", "merchant_account_exists": true, "bank_account_status": "string", "last_four": "stri" }