Kvell
Quick Start
- Sign up at kvell.io and obtain API credentials
- Create a terminal in the Admin Console with the parameters below
- Start processing — the adapter is pre-built and ready to use
Overview
Kvell payment integration
| Provider ID | kvell |
| Category | Card Processors |
| Website | kvell.io |
Configuration
Required Parameters
| Parameter | Description |
|---|---|
api_key | key for authorization API-requests |
secret_key | secret key for signature generation |
Example Configuration
{
"env": "prod",
"api_key": "your-api-key",
"secret_key": "your-secret-key"
}
Payment Flow
Payouts (one-phase):
- create_payout - payout creation via
/account2card:- Formation JSON-payload with amount, customer, description, recipient_pan, transaction
- Generation RSA-signing: sign(payload + secret_key, SHA256, RSA private key)
- Sending with headers x-api-key and x-signature
- Retrieval id and status
- get_payout_status - status check via
/{tx_id}:- Generation SHA256 signature: hash(api_key + tx_id + secret_key) lowercase hex
- Sending GET request with x-api-key and x-signature
- Parsing status from response
Status Mapping
| Provider Status | 4pay Status | Description |
|---|---|---|
new | Created | |
processing | charging | |
canceled | rejected | |
completed | charged |