Binding Form
Form for binding a customer's card number.
URL
Method: GET
- Production:
https://customer.pay.kvell.group/bind/pan - Stage:
https://customer.stage.kvell.group/bind/pan
Query string parameters
| Name | Data type | Required | Description |
|---|---|---|---|
api_key |
string | Yes | Unique shop identifier |
customer_key |
string | Yes | Customer identifier in the merchant's system |
signature |
string | Yes | Signature |
success_url |
string | Yes | URL for a successful request |
fail_url |
string | Yes | URL for an error |
The signature is built by concatenating api_key, customer_key, success_url, fail_url, and secret_key.
sha256 is computed from the resulting string:
where secret_key is the secret key found in the merchant's shop settings;