Refund

Initiate a refund for a previously completed transaction. Refunds are processed asynchronously — the response confirms the refund has been queued, and a webhook notification is sent once the funds are returned to the customer.

How Refunds Work

Vesicash refunds are sent directly to the customer's mobile money wallet using the payment reference from the original transaction. Once queued, you can track the refund status via the status endpoint or listen for the webhook event.

circle-info

Amount Constraint

The refund amount must not exceed the original transaction amount. Partial refunds are supported — you may call this endpoint multiple times as long as the cumulative refunded amount does not exceed the original charge.

POST: /v1/payment/refunds/process

Headers

Name
Type
Description

secret-key

string

Your Vesicash secret key

public-key

string

Your Vesicash public key

Request body

  • amount (number): The amount to be refunded. This value must not be greater than the amount associated with the specified payment reference.

  • payment_reference (string): The reference of the payment that needs to be refunded. This should match the original payment reference.

  • country_id (string): The unique identifier for the country in which the transaction is being processed. To retrieve a valid country_id, call the Get Countries endpointarrow-up-right and use the country_id field from the matching country object in the response.

  • transfer_to (string): The destination type for the refund disbursement. Currently supports mobile_number.

  • momo_phone_number (string): The mobile money number to receive the refund. E.164 format without the + prefix. E.g. 2340999993.

  • webhook_url (string): A valid HTTPS URL where Vesicash will POST the refund status notification once processing is complete. Must be publicly accessible. Overrides your dashboard default if provided.

  • reason (string): The reason for the refund.

Request

For example, you can make a post request to the endpoint above and pass in the raw json data below to refund a successful transaction.

Response

Response Fields

Field
Type
Description

status

string

Top-level outcome of the API call. success or error.

code

number

HTTP status code mirror. 200 on success.

message

string

Human-readable summary of the API response.

data.status

string

Current refund status. One of: processing successful failed

data.reference

string

Unique refund reference assigned by Vesicash. Use this to poll the refund status endpoint or correlate webhook events.

circle-info

Store the data.reference returned in the response. You can use it to query the status endpointarrow-up-right or match it against incoming webhook payloads.

Webhook Notification

Once the refund is processed, Vesicash sends a POST request to your webhook_url with the final refund outcome. Use this event — not the initial API response — to update your system's refund state.

Last updated