GET
/
MoneyIn
/
reverseCredit
/
{transId}
curl --request GET \
  --url https://api-sandbox.payabli.com/api/MoneyIn/reverseCredit/{transId} \
  --header 'requestToken: <api-key>'
{
  "responseText": "Success",
  "isSuccess": true,
  "responseData": {
    "authCode": null,
    "referenceId": "148-7e1528b9b7ab56d0bf3b837237b84479",
    "resultCode": 1,
    "resultText": "transaction processed.",
    "avsResponseText": null,
    "cvvResponseText": null,
    "customerId": null
  }
}

Authorizations

requestToken
string
header
required

Most endpoints require an organization token. Some endpoints require an application token, and those endpoints are noted.

Path Parameters

transId
string
required

ReferenceId for the transaction (PaymentId).

Example:

"45-as456777hhhhhhhhhh77777777-324"

Response

200
application/json
Success
isSuccess
boolean

Boolean indicating whether the operation was successful. A true value indicates success. A false value indicates failure.

Example:

true

responseText
string | null

Response text for operation: 'Success' or 'Declined'.

Example:

"Success"

responseData
object | null

The object containing the response data.