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 token delete by registration id
POST
/
payment
/
token
/
deleteByRegistrationId
Copy
curl --request POST \
--url https://gateway.varchev.com/ipg/payment/token/deleteByRegistrationId \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"organizationId": "<string>",
"registrationId": "<string>"
}'
Copy
{
"result": {
"code": 123,
"description": "<string>"
},
"registrationId": "<string>",
"timestamp": "<string>"
}
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/token/deleteByRegistrationId \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"organizationId": "<string>",
"registrationId": "<string>"
}'
Copy
{
"result": {
"code": 123,
"description": "<string>"
},
"registrationId": "<string>",
"timestamp": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.