OMNO
Revolutionizing Online Payment Processing. Unifying Payment Service Providers for Seamless Transactions.
Website: www.omno.com
Set up Account H2H merchant account
Step 1: Create Merchant Account
To create an account send connection request at the www.omno.com/contact 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:
- omno__client_id → Client ID
- omno__client_secret → Secret key
- omno__currency → choose currency (You can set these parameters according to available currencies and features for your OMNO 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 OMNO Provider Overview page in 'New connection' section and choose H2H Merchant account option to open Connection form.
Enter credentials:
- Client ID
- Secret key
Success
You have connected OMNO H2H merchant account!
API examples:
Minimum data set to create a payment invoices for payment_card_usd_hpp service
this request will be successful only if the constants are filled
SALE
POST /api/commerce/payment-invoices HTTP/1.0
{
"data":{
"type":"payment-invoice",
"attributes":{
"service":"payment_card_usd_hpp",
"commerce_account":"Hello World",
"currency":"USD",
"amount":2,
"flow":"charge",
"gateway_options":{
"cardgate":{
"tokenize":""
}
},
"customer":{
"reference_id":"33333"
},
"test_mode":false,
"options":{
"allow_partially":false,
"bypass_hpp":false,
"send_operation_context_on_return":false
},
"reference_id":"b0818fe6-4526-4402-b08a-f71093a492f4",
"service_fields":[
]
}
}
}
Maximum data set to create a payment invoices for payment_card_usd_hpp service
SALE
POST /api/commerce/payment-invoices HTTP/1.0
{
"data":{
"type":"payment-invoice",
"attributes":{
"service":"payment_card_usd_hpp",
"commerce_account":"Hello World",
"currency":"USD",
"amount":2,
"flow":"charge",
"gateway_options":{
"cardgate":{
"tokenize":""
}
},
"customer":{
"reference_id":"d95e408e-fcc3-4bce-8cfe-9c1b4369ae35",
"name":"John Wick",
"email":"[email protected]",
"phone":"+3801233456123",
"address":{
"full_address":"test street 123",
"country":"FR",
"region":"Paris",
"city":"Paris",
"street":"test street",
"post_code":"111111"
}
},
"test_mode":false,
"options":{
"allow_partially":false,
"bypass_hpp":false,
"send_operation_context_on_return":false
},
"reference_id":"a16162b7-7877-402c-877d-240f60bcbcf2",
"service_fields":[
]
}
}
}
If some parameters are not sent in the transaction creation request, they will take the values from the set constants.
Here is a list of constants with their corresponding parameters:
- FIRST_NAME → customer [first_name]
- LAST_NAME → customer [last_name]
- EMAIL → customer [email]
- PHONE → customer [phone]
- COUNTRY → customer [address] [country]
- STATE → customer [address] [state]
- CITY → customer [address] [city]
- ADDRESS → customer [address] [address]
- POST_CODE → customer[address][post_code]
Question
"Still looking for help connecting your OMNO account?" Please contact our support team!