{
"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"
}'{
"status": "success",
"code": 200,
"message": "Transaction processed successfully",
"data": {
"transactionId": "PAWA-TXN-001",
"merchantReference": "ORDER-4821",
"pspType": "PAWAPAY",
"type": "PAYIN",
"amount": 100,
"currency": "ZMW",
"country": "ZMB",
"phone": "260763456789",
"status": "ACCEPTED",
"createdAt": "2024-01-15T10:30:00Z"
}
}