Fenige
ALL ABOUT PAYMENTS
Website: www.fenige.com
Set up Account H2H merchant account
Step 1: Create Merchant Account
To create an account send connection request at the www.fenige.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:
- fenige__user_login → Username
- fenige__user_password → Password
- fenige__merchant_uuid → Merchant UUID
- fenige__prod_api_url → Production API URL
- fenige__test_mode → Test Mode
- fenige__currency → choose currency (You can set these parameters according to available currencies and features for your Fenige wallets and services, but it's necessary to check details of the connection with your Corefy account manager.)
Question
"Having issues with your credentials?" Please contact our support team!
Connect Merchant Account
Step 1. Connect H2H account at the Corefy Dashboard
Press Connect at Fenige Provider Overview page in 'New connection' section and choose H2H Merchant account option to open Connection form.
Enter credentials:
- Username
- Password
- Merchant UUID
- Production API URL (required if Test Mode is false)
- Test Mode → True/False
- Currency
Success
You have connected Fenige H2H merchant account!
API examples:
Minimum data set to create a payment invoices for payment_card_eur_hpp service
SALE
POST /api/payment-invoices HTTP/1.0
{
"data": {
"type": "payment-invoice",
"attributes": {
"reference_id": "1f2aa3ca-abd8-4741-980d-4017ed30cb8c",
"service": "payment_card_eur_hpp",
"currency": "EUR",
"amount": 5,
"customer": {
"reference_id": "85af8385-d00e-4f58-ab1f-3a527fdf2d3b",
"name": "John Doe",
"email": "johndoe@mail.com"
},
"test_mode": false
}
}
}
Maximum data set to create a payment invoices for payment_card_eur_hpp service
SALE
POST /api/payment-invoices HTTP/1.0
{
"data": {
"type": "payment-invoice",
"attributes": {
"reference_id": "1f2aa3ca-abd8-4741-980d-4017ed30cb8c",
"service": "payment_card_eur_hpp",
"currency": "EUR",
"amount": 5,
"customer": {
"reference_id": "85af8385-d00e-4f58-ab1f-3a527fdf2d3b",
"name": "John Doe",
"email": "johndoe@email.com",
"phone": "+2134234234523",
"address": {
"full_address": "123 Baker street",
"country": "US",
"state": "CA",
"city": "Los Angeles",
"post_code": "12345"
}
},
"test_mode": false
}
}
}
Additional information
Provider Options
- finalize_before_clearing
- Allows finalizing a transaction at the APPROVED status without waiting for it to reach CLEARED.
Question
"Still looking for help connecting your Fenige account?" Please contact our support team!