Rampnow
The crypto infrastructure for future. Buy and sell stable coins with ease and security on our user-friendly platform.
Website: rampnow.io
Set up Account Provider account
Step 1: Create Provider account
To create an account send connection request at the rampnow.io 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:
- rampnow__client_id → CLIENT ID
- rampnow__client_secret → CLIENT SECRET
- test_mode → true/false
Connect Provider Account
Step 1. Connect Provider account at the Corefy Dashboard
Press Connect at Rampnow Provider Overview page in 'New connection' section and choose Provider account option to open Connection form.
Enter credentials:
- Client ID
- Client Secret Key
Success
You have connected Rampnow Provider account!
API examples:
Minimum data set to create a payment invoices for payment_card_eur_hpp service
- this request to our API will only work if the customer_list is populated
PAYMENT
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":1,
"flow":"charge",
"gateway_options":{
"cardgate":{
"tokenize":""
}
},
"customer":{
"reference_id":"555",
},
"test_mode":true,
"options":{
"allow_partially":false,
"bypass_hpp":false,
"send_operation_context_on_return":false
},
"reference_id":"3f4de5f3-1354-46eb-9cf8-56ce46e447f8",
"service_fields":[
]
}
}
}
Minimum data set with required customer data to create a payment invoices for payment_card_eur_hpp service
PAYMENT
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":1,
"flow":"charge",
"gateway_options":{
"cardgate":{
"tokenize":""
}
},
"customer":{
"reference_id":"444",
"name":"Rajesh Madhaiyan",
"email":"[email protected]",
"address":{
"full_address":"Test address",
"country":"FR",
"city":"Paris",
"street":"test street"
}
},
"test_mode":true,
"options":{
"allow_partially":false,
"bypass_hpp":false,
"send_operation_context_on_return":false
},
"reference_id":"65e53d1e-1b6e-491c-a221-e6ba9b17f916",
"service_fields":[
]
}
}
}
Maximum data set to create a payment invoices for payment_card_eur_hpp service
PAYMENT
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":1,
"flow":"charge",
"gateway_options":{
"cardgate":{
"tokenize":""
}
},
"customer":{
"reference_id":"444",
"name":"Rajesh Madhaiyan",
"email":"[email protected]",
"phone":"+442012341234",
"address":{
"full_address":"Test address",
"country":"FR",
"region":"Paris",
"city":"Paris",
"street":"test street"
}
},
"test_mode":true,
"options":{
"allow_partially":false,
"bypass_hpp":false,
"send_operation_context_on_return":false
},
"reference_id":"65e53d1e-1b6e-491c-a221-e6ba9b17f916",
"service_fields":[
]
}
}
}
Question
"Still looking for help connecting your Rampnow account?" Please contact our support team!