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 pay 3d secure
POST
/
payment
/
pay-3d-secure
Copy
curl --request POST \
--url https://gateway.varchev.com/ipg/payment/pay-3d-secure \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'OrganizationId: <organizationid>' \
--header 'TenantId: <tenantid>' \
--header 'WalletId: <walletid>' \
--data '{
"merchantTransactionId": "<string>",
"customerId": "<string>",
"amount": 123,
"currency": "<string>",
"orderType": "<string>",
"sourceId": "<string>",
"destinationId": "<string>",
"orderDescriptor": "<string>",
"paymentBrand": "<string>",
"paymentMode": "<string>",
"terminalId": 123,
"merchantRedirectUrl": "<string>",
"notificationUrl": "<string>",
"shipping": {
"country": "<string>",
"city": "<string>",
"state": "<string>",
"postcode": "<string>",
"street1": "<string>"
},
"customer": {
"telnocc": "<string>",
"phone": "<string>",
"email": "<string>",
"givenName": "<string>",
"surname": "<string>",
"customerId": "<string>"
},
"card": {
"number": "<string>",
"expiryMonth": "<string>",
"expiryYear": "<string>",
"cvv": "<string>"
}
}'
Copy
{
"value": {
"id": "<string>",
"paymentDetail": {
"paymentId": "<string>",
"paymentBrand": "<string>",
"paymentMode": "<string>",
"paymentType": "<string>",
"registrationId": "<any>",
"amount": 123,
"currency": "<string>",
"card": {
"bin": "<string>",
"last4Digits": "<string>",
"holder": "<string>",
"expiryMonth": "<string>",
"expiryYear": "<string>"
},
"transactionStatus": "<string>",
"merchantTransactionId": "<any>",
"result": {
"code": 123,
"description": "<string>"
},
"descriptor": "<any>",
"remark": "<any>",
"timestamp": "<string>",
"redirect": {
"url": "<string>",
"method": "<any>",
"target": "<any>",
"parameters": [
{
"name": "<string>",
"value": "<string>"
}
]
}
}
},
"isOk": true,
"isErr": true
}
Authorizations
The access token received from the authorization server in the OAuth 2.0 flow.
Body
Response
200
text/plain
Success
The response is of type object
.
Copy
curl --request POST \
--url https://gateway.varchev.com/ipg/payment/pay-3d-secure \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'OrganizationId: <organizationid>' \
--header 'TenantId: <tenantid>' \
--header 'WalletId: <walletid>' \
--data '{
"merchantTransactionId": "<string>",
"customerId": "<string>",
"amount": 123,
"currency": "<string>",
"orderType": "<string>",
"sourceId": "<string>",
"destinationId": "<string>",
"orderDescriptor": "<string>",
"paymentBrand": "<string>",
"paymentMode": "<string>",
"terminalId": 123,
"merchantRedirectUrl": "<string>",
"notificationUrl": "<string>",
"shipping": {
"country": "<string>",
"city": "<string>",
"state": "<string>",
"postcode": "<string>",
"street1": "<string>"
},
"customer": {
"telnocc": "<string>",
"phone": "<string>",
"email": "<string>",
"givenName": "<string>",
"surname": "<string>",
"customerId": "<string>"
},
"card": {
"number": "<string>",
"expiryMonth": "<string>",
"expiryYear": "<string>",
"cvv": "<string>"
}
}'
Copy
{
"value": {
"id": "<string>",
"paymentDetail": {
"paymentId": "<string>",
"paymentBrand": "<string>",
"paymentMode": "<string>",
"paymentType": "<string>",
"registrationId": "<any>",
"amount": 123,
"currency": "<string>",
"card": {
"bin": "<string>",
"last4Digits": "<string>",
"holder": "<string>",
"expiryMonth": "<string>",
"expiryYear": "<string>"
},
"transactionStatus": "<string>",
"merchantTransactionId": "<any>",
"result": {
"code": 123,
"description": "<string>"
},
"descriptor": "<any>",
"remark": "<any>",
"timestamp": "<string>",
"redirect": {
"url": "<string>",
"method": "<any>",
"target": "<any>",
"parameters": [
{
"name": "<string>",
"value": "<string>"
}
]
}
}
},
"isOk": true,
"isErr": true
}
Assistant
Responses are generated using AI and may contain mistakes.