Skip to content

Add_Edit_Merchant_Payment_Details

Request

Security
basicAuth
Bodyrequired
address_zipstring or null
name_on_checkstring

Name on the check (likely a business name)

ach_account_numberstring or null, [ 5 .. 17 ] charactersrequired

Bank account number for the merchant’s bank account. Must be 17 digits or less.

ach_routing_numberstring or null, = 9 charactersrequired

9 digit routing number for the merchant’s bank account

emailstring or null, (email)

Email address for communications regarding the account

sec_codestring
  • CCD - CCD
Default:"CCD"
Value:"CCD"
bank_account_typestring

Either “Checking” or “Savings”

holder_typestring

Either “Individual” or “Business”

micro_deposits_amountsArray of strings, <= 2 items
request_user_idstring, <= 255 charactersrequired

External Partner user ID of an existing user set up at Momnt who is initiating the change to the payment account. This user must be an active merchant admin user for the merchant the update is being requested for.

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/ \
  -H 'Content-Type: application/json' \
  -d '{
    "address_zip": "string",
    "name_on_check": "string",
    "ach_account_number": "string",
    "ach_routing_number": "stringstr",
    "email": "user@example.com",
    "sec_code": "CCD",
    "bank_account_type": "string",
    "holder_type": "string",
    "micro_deposits_amounts": [
      "string"
    ],
    "request_user_id": "string",
    "external_org_id": "string"
  }'

Responses

Bodyapplication/json
address_zipstring or null
name_on_checkstring

Name on the check (likely a business name)

ach_account_numberstring or null, [ 5 .. 17 ] charactersrequired

Bank account number for the merchant’s bank account. Must be 17 digits or less.

ach_routing_numberstring or null, = 9 charactersrequired

9 digit routing number for the merchant’s bank account

emailstring or null, (email)

Email address for communications regarding the account

sec_codestring
  • CCD - CCD
Default:"CCD"
Value:"CCD"
bank_account_typestring

Either “Checking” or “Savings”

holder_typestring

Either “Individual” or “Business”

micro_deposits_amountsArray of strings, <= 2 items
request_user_idstring, <= 255 charactersrequired

External Partner user ID of an existing user set up at Momnt who is initiating the change to the payment account. This user must be an active merchant admin user for the merchant the update is being requested for.

external_org_idstring, <= 255 characters
Response
{ "address_zip": "string", "name_on_check": "string", "ach_account_number": "string", "ach_routing_number": "stringstr", "email": "user@example.com", "sec_code": "CCD", "bank_account_type": "string", "holder_type": "string", "micro_deposits_amounts": [ "string" ], "request_user_id": "string", "external_org_id": "string" }