Skip to main content
Reverse credit funds
curl --request POST \
  --url https://api.example.com/client-interfaces/vna/reverse-credit-funds \
  --header 'Content-Type: application/json' \
  --data '
{
  "AccountIdentifier": "<string>",
  "CreditTrackingNumber": "<string>"
}
'
{
  "Success": true,
  "TrackingIdentifier": "<string>",
  "ResponseDescription": "<string>"
}
This API MUST be implemented by the Partner. Platform’s backend will request fund reversal in case of an operation error.
Our backend will consume this service by performing a POST request to: [Base-URL]/ReverseCreditFunds. If reversal is not supported, response must be Success: false and NonReverseReason: NonReverseReason.NotSupported. Expected behavior: Order for total reversal of a previous credit movement associated with a CreditTrackingNumber. This usually occurs in case of cancellations, failures in the operation chain, or financial readjustments. The Partner must return the funds from the specified account and confirm success by returning Success as true.

Body

application/json
AccountIdentifier
string
required
CreditTrackingNumber
string
required

Response

200 - application/json

Ok

Success
boolean
required
TrackingIdentifier
string
required
ResponseDescription
string