Skip to content

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:

sha256({api_key}{customer_key}{success_url}{fail_url}{secret_key})

where secret_key is the secret key found in the merchant's shop settings;

Request example

https://customer.stage.kvell.group/bind/pan?api_key={api_key}&customer_key={customer_key}&signature={signature}&success_url={success_url}&fail_url={fail_url}
https://customer.stage.kvell.group/bind/pan?api_key=20fcdef0-4dda-4ecb-b702-b1b80209f21d&customer_key=123456789&signature=d6af65dae0b8999ef249090e429b034debc4416d1b2b1f185a1703588e8861e6&success_url=https%3A%2F%2Fyoursite.com%2Fsuccess_url&fail_url=https%3A%2F%2Fyoursite.com%2Ffail_url