- Consumer_Account_Cancel
Consumer_Account_Credit_Line_Increase
Consumer Application Invitation
Consumer_All_Transaction_Activity
Available_Consumer_Transactions
Consumer_Invitation_List
Refundable_Transactions
Consumer_Charge_Settled
Merchant_Consumer_Applications_List
Consumer_Information_Details
Consumer_Payment_Portal_Account_Email_Request
Consumer_Payment_Request_Create
Consumer Payment Request Approve
Consumer_Payment_Request_List
Consumer_Refund_Request
Consumer_Transactions_List
Consumer_Account_Cancel
Endpoint to cancel a consumer account using external_application_id.
Requirements:
- Authentication is required; the sponsor/partner must provide valid credentials.
external_application_id: The external application ID must be provided in the request path to identify the consumer account to cancel.request_user_id: The user ID in the Momnt system must be included in the request payload. The user must be active and previously established (e.g., via pre-onboarding or create_user).- Only users with appropriate permissions (Admin, Salesmanager, or the original Salesrep who sent the invitation) may cancel the account.
- If the consumer account has any activity (e.g., amount spent > 0), cancellation will be forbidden.
- On success, the consumer account will be deactivated and the application status updated to "Cancelled".
Security
basicAuth
- Mock serverhttps://momnt-api-docs.redocly.app/_mock/docs/openapi/sponsor_consumer_v1/api/v1/sponsor/consumers/accounts/cancel/
curl -i -X POST \
-u '<username>:<password>' \
https://momnt-api-docs.redocly.app/_mock/docs/openapi/sponsor_consumer_v1/api/v1/sponsor/consumers/accounts/cancel/ \
-H 'Content-Type: application/json' \
-d '{
"request_user_id": "string",
"external_application_id": "string"
}'Response
{ "detail": "Consumer account cancellation for invitation 12345." }