Example of the responses:
{ "success": true, "status": "Success", "order_id": "7fa13dbc3b79e05e", "amount": 10, "currency": "INR", "payment_system": "mpesa", "custom_transaction_id": "custom123", "custom_user_id": "user123", "created_at": 1665135515 }
{ "success": false, "message": "Invalid request", "code": 400 }
Last updated 1 month ago
The data are taken from the table deposit by order_id field based on the selected project from the table project
deposit
order_id
project
OK
const response = await fetch('https://<domain>/Remotes/deposit-info?project_id=0&order_id=text', { method: 'GET', headers: {}, }); const data = await response.json();