Skip to main content

Internal Fund Movement API

Alt test Endpoint: https://sandbox.sasapay.app/api/v1/transactions/fund-movement/

Request Parameters

FieldTypeDescriptionExamples
merchantCodestringA unique number assigned to an organization/merchant registered with ViewTech, through which payment is received (can be Paybill or Till number)“60**80”
amountDecimalAmount to be moved from working account to utility account label.1000.00
Sample request
Headers
Key: Authorization
Value: "Authorization":"Bearer XXXXXX"

Body {
"amount":10.00,
"merchantCode":"609**0"
}

Response Sample Success

FieldTypeDescriptionExample
statusboolThis is a true or false status that indicates the status of the response. true means success and false means an error occurred or the request failed.true
messagestringA description of the response status sent by SasaPay API.SUCCESS,Transaction completed
Sample success response
{
"status": true,
"message": "SUCCESS,Transaction completed"
}