{
"userId": "test001",
"pspType": "PAWAPAY",
"type": "PAYIN",
"baseamount": 100,
"currency": "ZMW",
"country": "ZMB",
"phone": "260763456789",
"merchantReference": "ORDER-4821"
}curl --location 'https://backend.app.mozarto.io/v1/api/mozarto/cashier' \
--header 'Authorization: Bearer {{BRAND_TOKEN}}' \
--header 'X-User-token: Bearer {{USER_TOKEN}}' \
--header 'Content-Type: application/json' \
--data '{
"userId": "test001",
"pspType": "PAWAPAY",
"type": "PAYIN",
"baseamount": 100,
"currency": "ZMW",
"country": "ZMB",
"phone": "260763456789",
"merchantReference": "ORDER-4821"
}'{\n "status": "success",\n "code": 200,\n "message": "Transaction processed successfully",\n "data": {\n "transactionId": "PAWA-TXN-001",\n "merchantReference": "ORDER-4821",\n "pspType": "PAWAPAY",\n "type": "PAYIN",\n "amount": 100,\n "currency": "ZMW",\n "country": "ZMB",\n "phone": "260763456789",\n "status": "ACCEPTED",\n "createdAt": "2024-01-15T10:30:00Z"\n }\n}