Internal Fund Movement API
Endpoint: https://sandbox.sasapay.app/api/v1/transactions/fund-movement/
Request Parameters
Field | Type | Description | Examples |
---|---|---|---|
merchantCode | string | A unique number assigned to an organization/merchant registered with ViewTech, through which payment is received (can be Paybill or Till number) | “60**80” |
amount | Decimal | Amount 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
Field | Type | Description | Example |
---|---|---|---|
status | bool | This 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 |
message | string | A description of the response status sent by SasaPay API. | SUCCESS,Transaction completed |
Sample success response
{
"status": true,
"message": "SUCCESS,Transaction completed"
}