Paystrax¶
Secure payment processing solutions. Experience streamlined POS and online payment integrations, ensuring secure transactions every time.
Website: paystrax.com
Set up Account H2H merchant account¶
Step 1: Create Merchant Account¶
To create an account send connection request at the paystrax.com/contacts 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:
- paystrax__access_token → Access Token
- paystrax__entity_id → Entity ID
- paystrax__test_mode → Test Mode
- paystrax__currency → choose currency (You can set these parameters according to available currencies and features for your Paystrax wallets and services, but it's necessary to check details of the connection with your Corefy account manager.)
Connect Merchant Account¶
Step 1. Connect H2H account at the Corefy Dashboard¶
Press Connect at Paystrax Provider Overview page in 'New connection' section and choose H2H Merchant account option to open Connection form.
Enter credentials:
- Access Token
- Channel ID
- Test Mode → true/false
Success
You have connected Paystrax H2H merchant account!
API examples:¶
Minimum data set to create a payment invoices for payment_card_eur_hpp service¶
SALE
POST /api/commerce/payment-invoices HTTP/1.0
{
"data":{
"type":"payment-invoice",
"attributes":{
"service":"payment_card_eur_hpp",
"commerce_account":"Hello World",
"currency":"EUR",
"amount":10,
"flow":"charge",
"gateway_options":{
"cardgate":{
"tokenize":""
}
},
"customer":{
"reference_id":"50bd61b1-6f3f-4cdf-a453-c423634fb272"
},
"test_mode":true,
"options":{
"allow_partially":false,
"bypass_hpp":false,
"send_operation_context_on_return":false
},
"reference_id":"bc2532e4-6bad-4026-82a8-f58522b89ecf",
"service_fields":[
]
}
}
}
Maximum data set to create a payment invoices for payment_card_eur_hpp service¶
SALE
POST /api/commerce/payment-invoices HTTP/1.0
{
"data":{
"type":"payment-invoice",
"attributes":{
"service":"payment_card_eur_hpp",
"commerce_account":"Hello World",
"currency":"EUR",
"amount":10,
"flow":"charge",
"gateway_options":{
"cardgate":{
"tokenize":"1"
}
},
"customer":{
"reference_id":"50bd61b1-6f3f-4cdf-a453-c423634fb272",
"name": "John Doe"
},
"test_mode":true,
"options":{
"allow_partially":false,
"bypass_hpp":false,
"send_operation_context_on_return":false
},
"reference_id":"ad3da0ad-f32e-4707-9d3e-fc246979d34b",
"service_fields":[
]
}
}
}
Question
"Still looking for help connecting your Paystrax account?" Please contact our support team!