Skip to main content
POST
/
payment
/
transactions
cURL
curl --request POST \
  --url https://gateway.varchev.com/ipg/payment/transactions \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'organizationId: <organizationid>' \
  --data '
{
  "status": "<string>",
  "pagination": {
    "pageNumber": 123,
    "pageSize": 123,
    "fromDate": "2023-11-07T05:31:56Z",
    "toDate": "2023-11-07T05:31:56Z"
  }
}
'
{
  "transactions": [
    {
      "result": null,
      "paymentId": null,
      "timestamp": null,
      "amount": "<string>",
      "currency": "<string>",
      "systemPaymentId": "<string>",
      "merchantTransactionId": "<string>",
      "transactionStatus": {
        "detail": "<string>"
      },
      "captureamount": "<string>",
      "refundamount": "<string>",
      "chargebackamount": "<string>",
      "payoutamount": "<string>",
      "date": "<string>",
      "transactionDate": "<string>",
      "remark": "<string>",
      "customer": {
        "givenName": "<string>",
        "surname": "<string>",
        "phone": "<string>",
        "email": "<string>",
        "telnocc": "<string>",
        "country": "<string>",
        "city": "<string>",
        "street": "<string>"
      },
      "card": {
        "bin": "<string>",
        "last4Digits": "<string>",
        "holder": "<string>",
        "expiryMonth": "<string>",
        "expiryYear": "<string>"
      },
      "transactionReceiptImg": "<string>",
      "bankReferenceId": "<string>",
      "terminalid": 123
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.varchev.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Headers

organizationId
string
required

Body

status
string | null
pagination
object

Response

Success

transactions
object[] | null