Skip to main content

sberpay/push

sberpay/push

Use this method to send PUSH/SMS notifications to customers for SberPay transactions.

It is up to Sber to choose whether to send a PUSH or SMS notification.

Endpoint

/api/v1/sberpay/push

Request parameters

NameMandatoryTypeDescription
session_id+stringSession ID
phone+stringPhone number to send PUSH or SMS to
Request example
curl -X GET \
https://demo.smart-glocal.com/api/v1/sberpay/push' \
-H 'X-PARTNER-SIGN: signature' \
-H 'X-PARTNER-PROJECT: your_project_name' \
-H 'Content-Type: application/json' \
-d '{
"session_id": "ps_75459435",
"phone": "+79111234567"
} '

Response parameters

NameMandatoryTypeDescription
status+stringStatus. Options: error, ok
error-objectError description
Response example
{
"status": "ok"
}