订单
获取多个订单
GET /orders
查询参数
名称
类型
描述
可用选项
product_id
整型
产品ID
page
整型
页数
per_page
整型
每页获取的订单数
location_id
整型
位置ID
status
字符串
订单状态
note_search
字符串
要搜索的订单备注字段中的短语
order_ids
数组
目标订单的ID
响应案例:
curl -X GET "https://apid.iproyal.com/v1/reseller/orders?product_id=123&page=1&per_page=10&location_id=456&status=in-progress¬e_search=example%20note&order_ids=789,1011" \
-H "X-Access-Token: <your_access_token>" \
-H "Content-Type: application/json"<?php
$api_token = '<your_access_token>';
$params = [
'product_id' => 123,
'page' => 1,
'per_page' => 10,
'location_id' => 456,
'status' => 'in-progress',
'note_search' => 'example note',
'order_ids' => [789, 1011]
];
$query = http_build_query($params);
$url = "https://apid.iproyal.com/v1/reseller/orders?$query";
$options = [
CURLOPT_URL => $url,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => [
"X-Access-Token: $api_token",
'Content-Type: application/json'
]
];
$ch = curl_init();
curl_setopt_array($ch, $options);
$response = curl_exec($ch);
if (curl_errno($ch)) {
echo 'Error:' . curl_error($ch);
} else {
echo $response;
}
curl_close($ch);
?>响应示例:
{
"data": [
{
"id": 420,
"note": null,
"product_name": "Static Residential",
"plan_name": "30 Days",
"expire_date": "2024-04-20 10:25:12",
"status": "confirmed",
"location": "United States",
"quantity": 5,
"questions_answers": [
{
"question": "Extra requirements (if you have any):",
"answer": "I need 128.158.97"
}
],
"proxy_data": {
"ports": {
"socks5": 12324,
"http|https": 12323
},
"proxies": []
},
"auto_extend_settings": null,
"extended_history": []
},
...
],
"meta": {
"current_page": 1,
"from": 1,
"last_page": 2,
"path": "https://apid.iproyal.com/v1/reseller/orders",
"per_page": 10,
"to": 10,
"total": 14
}
}获取订单
GET /orders/{order_id}
响应案例:
响应示例:
计算价格
GET /orders/calculate-pricing
查询参数
名称
类型
描述
product_id
整型
产品ID
product_plan_id
整型
产品套餐ID
product_location_id
整型
产品地理位置ID
quantity
整型
代理数量
coupon_code
字符串
优惠码
响应案例:
示例响应:
创建订单
POST /orders
正文参数
名称
类型
描述
product_id
整型
产品ID
product_plan_id
整型
产品套餐ID
product_location_id
整型
产品地理位置ID
quantity
整型
代理数量
coupon_code
字符串
优惠码
auto_extend
布尔值
订单是否会自动续期
product_question_answers
数组
问题解答
响应案例:
响应示例:
续期订单
POST /orders/{order_id}/extend
正文参数
名称
类型
描述
product_plan_id
整型
产品套餐ID
响应案例:
响应示例:
Last updated