This operation allows user to get a single escrow transaction.
Last updated 14 days ago
The escrow transaction has been returned.
const response = await fetch('http://localhost:3002/api/v1/escrow/{id}', { method: 'GET', headers: {}, }); const data = await response.json();
{ "success": false, "message": "The escrow transaction has been returned.", "statusCode": 200, "code": "ESCROW_TRANSACTION_FOUND", "data": { "associateId": "9ffe18", "tempCustomer": { "name": "Damien Darhk", "email": "[email protected]" }, "isLiveResource": true, "status": "pending", "items": [ { "name": "Oraimo 72000mAh Powerbank", "price": 7200, "qty": 1 } ], "additionalNotes": "Additional notes for the transaction", "issuedAt": "2024-09-28T15:23:42.771Z" } }