CirxusPay¶
Secure Payment Solutions for Modern Business
Website: cirxus-pay.com
Set up Account¶
Step 1: Create merchant account¶
To create an account send connection request at the cirxus-pay.com or contact manager directly. Submit the required documents to verify your account and gain access.
Step 2: Get required credentials¶
Credentials that have to be issued:
- API key
- API type
- Brand ID
- S2S token
Connect H2H Merchant Account¶
Step 1. Connect H2H account at the Corefy Dashboard¶
Press Connect at CirxusPay Provider Overview page in 'New connection' section and choose H2H Merchant account option to open Connection form.
Enter credentials:
- API key → API key
- API type → Select API type (Direct post or Server-to-Server)
- Brand ID → Brand ID
- Webhook public key → Webhook public key
- Strict customer data validation → Select Strict customer data validation
- Server-to-Server token → Server-to-Server token
- Currency → choose currency (You can set these parameters according to available currencies and features for your CirxusPay wallets and services, but it's necessary to check details of the connection with your Corefy account manager.)
Success
You have connected CirxusPay H2H merchant account!
API examples:¶
Maximum data set to create a transaction¶
POST /api/commerce/payment-invoices HTTP/1.1
{
"data": {
"type": "payment-invoice",
"attributes": {
"service": "payment_card_usd_hpp",
"commerce_account": "HELLO WORLD",
"currency": "USD",
"amount": 1,
"flow": "charge",
"customer": {
"reference_id": "287e6567-3625-43f3-aac4-ff3002c6742d",
"name": "Test TEST",
"email": "[email protected]",
"phone": "+380970001122",
"individual_tax_id": "82189212198",
"address": {
"full_address": "Ukraine",
"country": "UA",
"region": "Ukraine",
"city": "Ukraine",
"street": "Ukraine",
"post_code": "62000"
}
},
"test_mode": false,
"options": {
"allow_partially": false
},
"reference_id": "e2e594d7-eff2-41e9-9273-610670646111"
}
}
}
Minimum data set to create a transaction¶
POST /api/commerce/payment-invoices HTTP/1.1
{
"data": {
"type": "payment-invoice",
"attributes": {
"service": "payment_card_usd_hpp",
"commerce_account": "Hello world ",
"currency": "USD",
"amount": 1,
"flow": "charge",
"customer": {
"reference_id": "6164d44c-10de-48cd-91a4-735fc7c64f58"
},
"test_mode": false,
"options": {
"allow_partially": false
},
"reference_id": "0520290c-0986-42d6-98ce-6f19f570597d"
}
}
}
Still looking for help connecting your CirxusPay account?