POST http://sdk.ddyun.com/api/BatchReboot
批量重启订单
Request Information
URI Parameters
None.
Body Parameters
SDKBatchRebootParam| Name | Description | Type | Additional information |
|---|---|---|---|
| rocomcphnonroot |
ROOT模式 0非ROOT 1ROOT 不传等于不切换的重启 |
integer |
None. |
| orderids |
订单数组,逗号分隔 |
string |
None. |
| appkey |
商户Key |
string |
None. |
| timestamp |
时间戳 |
integer |
None. |
| noncestr |
随机字符,使签名不可预测 |
string |
None. |
| sign |
签名信息 |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"RoComCphNonRoot": 1,
"OrderIDs": "sample string 1",
"AppKey": "sample string 2",
"Timestamp": 3,
"NonceStr": "sample string 4",
"Sign": "sample string 5"
}
application/x-www-form-urlencoded
Sample:
RoComCphNonRoot=&OrderIDs=&AppKey=&Timestamp=0&NonceStr=&Sign=
multipart/form-data
Sample:
Sample not available.
Response Information
Resource Description
批量重启订单
SDKBaseResultOfBatchOrderReturn| Name | Description | Type | Additional information |
|---|---|---|---|
| data | BatchOrderReturn |
None. |
|
| code |
错误码 |
SDKResultCode |
None. |
| msg |
错误消息 |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Data": {
"SuccessOrders": [
1,
2
],
"FailOrders": [
1,
2
],
"VerifyAgainUrl": "sample string 1"
},
"Code": 0,
"Msg": "sample string 1"
}