POST
/
account
/
virtual
/
reverse
/
{reversalId}
curl --request POST \
  --url https://devapi.withedge.co/gateway/api/v1/account/virtual/reverse/{reversalId} \
  --header 'Authorization: Bearer <token>' \
  --header 'requestId: <requestid>'
{
	"statusCode": 00,
	"message": "Funds reversed",
	"data": {},
	"errors": []
}

Reverse Funds

Use this endpoint to reverse the most recent collection into a dynamic virtual account. This operation is allowed only when the account is in an inactive status.


Request Parameters

requestId
string
required

A unique identifier for the request, used for idempotency.
Example: e0b9f8d0-7a57-4a67-a8b2-4d7c7b5a37c9

reversalId
string
required

The unique identifier for the reversal request.
Example: res1324323


Additional Information

The reversal can only be called once the account has entered the status inactive.

{
	"statusCode": 00,
	"message": "Funds reversed",
	"data": {},
	"errors": []
}