Skip to main content
POST
/
api
/
PaymentMethod
/
reverse-auth
Reverse Authorization
curl --request POST \
  --url https://api.revolv3.com/api/PaymentMethod/reverse-auth \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json-patch+json' \
  --data '
{
  "paymentMethodAuthorizationId": 76,
  "reason": "Merchant requested reversal of auth",
  "amount": 45
}
'
{
  "paymentProcessor": 4,
  "referenceNumber": "5287H65D567",
  "message": "Approved"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

paymentMethodAuthorizationId
integer<int64>
reason
string | null
amount
number<double> | null

Response

OK

paymentProcessor
integer<int32>
referenceNumber
string | null
message
string | null