GET
/
MoneyIn
/
capture
/
{transId}
/
{amount}
curl --request GET \
  --url https://api-sandbox.payabli.com/api/MoneyIn/capture/{transId}/{amount} \
  --header 'requestToken: <api-key>'
{
  "responseText": "Success",
  "isSuccess": true,
  "pageIdentifier": null,
  "responseData": {
    "authCode": "TAS223",
    "referenceId": "255-869cbc1bb20047dab8045c6b3e21022b",
    "resultCode": 1,
    "resultText": "Approved",
    "avsResponseText": null,
    "cvvResponseText": null,
    "customerId": 4438,
    "methodReferenceId": 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"

amount
number
required

Amount to be captured. The amount cannot be greater the original total amount of the transaction. 0 captures the total amount authorized in the transaction.

Response

200
application/json

Ok

General response for certain moneyIn and moneyOut endpoints.