Skip to content

Latest commit

 

History

History
64 lines (55 loc) · 1.81 KB

sozdanie-zakaza.md

File metadata and controls

64 lines (55 loc) · 1.81 KB

Создание заказа

POST https://tegro.money/api/createOrder/

Используйте этот метод для получения прямой ссылки на оплату заказа

Запрос

Header
AuthorizationstringПодпись запроса
Body
shop_id string Shop ID
nonce integer Уникальный номер запроса
currency string Валюта оплаты, RUB/USD/EUR etc
amount number Сумма оплаты
order_id string Номер заказа в Вашем магазине
payment_system integer ID платежной системы
fields array Данные о покупателе
receipt array Данные о корзине

Ответ

{
  "type": "success",
  "desc": "",
  "data": {
    "id": 755555,
    "url": "https://tegro.money/pay/complete/755555/7f259f856e7682a6e98179036a623696/"
  }
}

Пример запроса

{
  "shop_id": "1913EA935149B1E5D852A",
  "nonce": 1613435880,
  "currency": "RUB",
  "amount": 1200,
  "order_id": "test order",
  "payment_system": 5,
  "fields": {
    "email": "[email protected]",
    "phone": "79111231212"
  },
  "receipt": {
    "items": [
      {
        "name": "test item 1",
        "count": 1,
        "price": 600
      },
      {
        "name": "test item 2",
        "count": 1,
        "price": 600
      }
    ]
  }
}