创建新订单
代理购买
该方法从余额中扣除资金,并创建一个购买代理的新订单
请求
URL
https://api.belurk.com/orders/create
发送方法
POST
CURL
- 1.curl --location 'https://api.belurk.com/orders/create'
- 2.--header 'Content-Type: application/json'
- 3.--header 'x-api-token: {{API_TOKEN}}'
- 4.--data '{
- 5. "product_id": 1
- 6. "quantity": 10
- 7.}'
成功响应
响应状态: HTTP 200 OK
- 1.{
- 2. "data": {
- 3. "order_id": 1816
- 4. }
- 5.}
失败响应
响应状态: HTTP 500 内部服务器错误
- 1.{
- 2. "data": null
- 3. "error": "Внутренняя ошибка системы"
- 4.}