- Consumer_Account_Credit_Line_Increase
Consumer_Account_Cancel
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_Credit_L...
Endpoint to initiate a credit line increase (CLI) for a consumer account.
Requirements:
- Authentication is required; the sponsor/partner must provide valid credentials.
external_application_id: The external application ID must be provided in the request payload to identify the consumer account.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.cli_amount: The requested credit line increase amount. Must be greater than the current credit limit and less than or equal to the max approved amount.- Only users with appropriate permissions (Admin, Salesmanager, or the original Salesrep who sent the invitation) may initiate a CLI.
- The consumer application and account must be in good standing (not canceled, suspended, closed).
- The consumer account must have a zero balance (amount spent = 0).
- Only one CLI can be performed per account.
- On success, the consumer account's credit limit will be updated and the application status will reflect the CLI request.
Security
basicAuth
- Mock serverhttps://momnt-api-docs.redocly.app/_mock/docs/openapi/sponsor_consumer_v1/api/v1/sponsor/consumers/accounts/credit-line-increase/
curl -i -X POST \
-u '<username>:<password>' \
https://momnt-api-docs.redocly.app/_mock/docs/openapi/sponsor_consumer_v1/api/v1/sponsor/consumers/accounts/credit-line-increase/ \
-H 'Content-Type: application/json' \
-d '{
"external_application_id": "string",
"request_user_id": "string",
"cli_amount": "string"
}'Response
{ "detail": "Credit line increase successfully initiated." }