SIGNATURE

Example Request:

{
  "user_uuid": "0091e581-d96f-478b-be98-51937b66204d",
  "merchant_id": "a6631ecaa-7ad1-162b-91c2-458dfd6e0e73",
  "amount": 500,
  "callback_url": "https://webhook.site/cfe48fa4-dd15-4a8b-a318-c918e94cb020",
  "redirect_url": "https://ya.ru/",
  "email": "[email protected]",
  "customer_name": "Ivan Vasiliev",
  "currency": "kzt",
  "payeer_identifier": "payeer_identifier12331123",
  "payeer_ip": "127.0.0.1",
  "payeer_type": "ftd",
  "payment_method": "card2card",
  "payeer_first_name": "Ivan",
  "payeer_last_name": "Vasiliev",
  "payeer_card_exp_month": "01",
  "payeer_card_exp_year": "2024",
  "payeer_card_cvv": "111",
  "lifetime": 600
}

Signature generation rule

To generate the signature, convert the request body to JSON format, concatenate it with the api_key issued to you in your personal account, and apply the SHA1 hash function to the resulting string.

Compute the result using the SHA1 hash function:

Last updated