Bulk Backorder
Request URL
Request Method
Request Parameter
Field |
Parameter |
Type |
Required |
Description |
APPID |
appid |
String |
Yes |
Application Client Id |
Timestamp |
gntime |
String |
Yes |
The current UNIX timestamp |
Signature |
gntoken |
String |
Yes |
Signature string. For details, please refer to the Signature Method page. |
domain list |
ym |
String |
Yes |
domain list, domains separated by【\n】,maximum of 100 domain names per submission |
backorder channel |
td |
Integer |
Yes |
e.g: 1 represents channel 1 |
Request Demo
{
"appid": "100xxxxxxxf7",
"gntime": 1627912775,
"td": "2",
"ym": "cdsccd88.com\njiemeier.com\nzsfb.com\nqtyp.com",
"gntoken": "A2277F3FD66591D559319D14BC4ED1E2"
}
Response Data
Field |
Parameter |
Type |
Description |
return code |
code |
Integer |
1:return successfully -1:return failed |
return description |
msg |
String |
return the description of request operation |
return data |
data |
Object |
return the result data of request operation |
Return Data
Field |
Parameter |
Description |
quantity of successfully backorder |
oksl |
|
quantity of failed backorder |
errsl |
|
successfully backorder domain |
ok |
|
failed backorder domain |
err |
|
Response Demo
//failure
{
"code": -1,
"msg": "Sorry, request verification error",
"data": ""
}
//success
{
"code": 1,
"msg": "OK",
"data": {
"oksl": 1,
"errsl": 1,
"ok": [
{
"code": 1,
"msg": "successfully backorder",
"data": "3.00",
"ym": "qtyp.com"
}
],
"err": [
{
"code": -2,
"msg": "Sorry, you have already backordered this domain",
"data": "",
"ym": "shangpinyan.com"
}
]
}
}