Mtariri
HomeNeed Help?
HomeNeed Help?
  1. Home
  • Introduction
  • Get authenticated user wallet
    GET
  • Deposit funds
    POST
  • Withdraw funds
    POST
  • Transfer funds to another user
    POST
  • List wallet transactions
    GET
  • Get authenticated user profile
    GET
  • Update authenticated user profile
    PUT
  • Get authenticated user preferences
    GET
  • Update authenticated user preferences
    PUT
  • List notifications
    GET
  • Create notification
    POST
  • Mark notification as read
    PUT
  • Find investment opportunities for authenticated lender
    GET
  • Get map markers for user profiles
    GET
  • Get map markers for loan requests
    GET
  • List loan requests
    GET
  • Create loan request (draft)
    POST
  • Get loan details
    GET
  • Update loan (borrower only)
    PUT
  • Invest in a loan
    POST
  1. Home

Deposit funds

POST
/wallet/deposit
Maintainer:Not configured
x-stoplight:{"id":"c9kfd2dpiomkt"}
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://app.mtariri.xyz/api//wallet/deposit' \
--header 'Content-Type: application/json' \
--data-raw '{
    "amount": 0.01,
    "payment_method": "string",
    "description": "string"
}'
Response Response Example
200 - Example 1
{
    "success": true,
    "newBalance": 0,
    "message": "string"
}

Request

Authorization
JWT Bearer
Add the parameter
Authorization
to Headers
Example:
Authorization: ********************
or
Body Params application/json

Examples

Responses

🟢200OK
application/json
Deposit successful
Body

🟠400Bad Request
🟠401Unauthorized
🟠404Record Not Found
🔴500Server Error
Modified at 2025-08-17 22:22:15
Previous
Get authenticated user wallet
Next
Withdraw funds
Built with