Transfer of funds within the system
data
Сумма перевода
Комиссия перевода
Баланс отправителя
Номер транзакции
Номер получателя
Инициатор запроса (заполняется на стороне api)
No Content
const response = await fetch('//api.client.nbcgate.tech/api/transfer', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "amount": 0, "from_balance_id": 0, "order_id": "text", "product_id": 0, "to_owner_id": 0 }), }); const data = await response.json();
{ "errors": [ { "code": 0, "field": "text", "message": "text" } ], "message": "text", "statusCode": 0 }
Transfer data by order_id
order id
user id
OK
const response = await fetch('//api.client.nbcgate.tech/api/transfer/{order_id}/{user_id}', { method: 'GET', headers: {}, }); const data = await response.json();
{ "amount": 0, "author": "text", "commission": 0, "date": "text", "from_balance_id": 0, "from_iso_string": "text", "order_id": "text", "to_balance_id": 0, "to_owner_id": 0, "to_owner_name": "text" }