Skip to content

Initiate_Micro_Deposits

Request

This endpoint will only be used after an error occurs when verifying the Micro-Deposits. Ie. The merchant exhausts their attempts for verification (More than three wrong attempts), or their Micro-Deposits expire (after 14 days). This endpoint needs to be called when the bank_account_status is VerificationFailed.

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.
  • No fields are required for this POST.
Security
basicAuth
Path
request_user_idstringrequired
Body
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/initiate-micro-deposits/{request_user_id}/' \
  -H 'Content-Type: application/json' \
  -d '{
    "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" }