Skip to content

SBP Payment Order

Method for retrieving the printable "SBP payment order" form in PDF format.

URL

Method: GET

  • Production: https://api.pay.kvell.group/v1/orders/{transaction}/operation-certificate/pdf
  • Stage: https://api.pay.stage.kvell.group/v1/orders/{transaction}/operation-certificate/pdf

Request parameters

Name Data type Required Description
transaction string Yes Unique transaction number on the merchant's side

Request headers

Name Data type Required Description
X-Api-Key string Yes Unique shop identifier
X-Signature string Yes Signature

The X-Signature signature is formed by concatenating X-Api-Key, transaction, and secret_key. It is computed as sha256 of the resulting string:

sha256({x-api-key}{transaction}{secret_key})

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

Response

{
  "file_url": "https://example.com/path/to/certificate.pdf"
}
{
  "errors": [
    {
      "message": "string",
      "code": 0
    }
  ]
}
Name Data type Description
file_url string URL for downloading the PDF file