POST
/
payment
/
transactions
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": "<any>",
      "paymentId": "<any>",
      "timestamp": "<any>",
      "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
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Headers

organizationId
string
required

Body

Response

200
text/plain

Success

The response is of type object.