Last updated 1 year ago
"Deposit successfully"
"Transactions loaded successfully"
const response = await fetch('https://cm.test/api/wallet/deposit', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "amount": 0, "payment_method": "cash" }), }); const data = await response.json();
{ "status": false, "message": "Deposit successfully" }
const response = await fetch('https://cm.test/api/wallet/transactions', { method: 'GET', headers: {}, }); const data = await response.json();
{ "status": false, "message": "Transactions loaded successfully", "data": "text" }