AML
Country Data
Crypto
- Private
- Public
Customer
- 2FA
- AccessControl
- Active Session
- Credentials
- Customer
- Organization
IPG
- IPG Backoffice APIs
- IPG Payment APIs
- DELDelete payment token delete
- GETGet payment organizations customers saved cards
- GETGet payment organizations terminals
- GETGet payment payments status by payment id
- POSTPost payment pay 3d secure
- POSTPost payment pay sync
- POSTPost payment pay with token
- POSTPost payment payments refund
- POSTPost payment payments status by transaction id
- POSTPost payment token delete by registration id
- POSTPost payment token register
- POSTPost payment transactions
- DEL
KYB
- Company
- EIN Verification
- IBAN Verification
- NIF Verification
- Product
- System
- TIN Verification
- VAT Verification
KYC
PEPS
- Default
- GETGet get profile
Smart Contract
- Global Settings
- Rules
- Smart Contract
Wallet
- Admin
- Allowed Operation
- Assets
- Currency
- Currency Pairs
- Dashboard
- Fee
- Limit
- Misc
- Operation Address
- Operation Destination
- Order
- Transactions
- Wallets
IPG Payment APIs
Post payment transactions
POST
/
payment
/
transactions
Copy
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"
}
}'
Copy
{
"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
The access token received from the authorization server in the OAuth 2.0 flow.
Headers
Body
Response
200
text/plain
Success
The response is of type object
.
Copy
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"
}
}'
Copy
{
"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
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.