Transfer Out Details#
Get transfer out domain name information|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. |
| task ID | id | Integer | Yes | Transfer Out Task ID |
|Request Demo#
{
"url": "{URL}/api/tranout/info",
"method": "POST",
"body": {
"appid": "testappid",
"gntime": 1602900833,
"id": "1234",
"gntoken": "1DED302C96AA9AEF924E4BD9D02B85A6"
}
}
|Response Data#
| Field | Parameter | Type | Description |
|---|
| Response Code | code | Integer | 1:success, -1:fail |
| Response note | msg | String | Response note |
| Response data | data | Object | Response data |
|Return Data#
| Field | Parameter | Type | Description |
|---|
| task ID | id | Integer | transfer out task id |
| domain | ym | String | transfer out domain name |
| apply time | sj | String | apply transfer out time |
| Registrar | zcs | String | registrar of domain name |
| UID | uid | Integer | user id |
| task status | zt | Integer | task status: 0=Wait for auth code, 1=Success, 2=Auth code sent successfully, 3=Failure, 4=Cancelled, 5=Expired, 99=Unknown |
| task status note | ztstr | String | task status note |
|Response Demo#
{
"code": 1,
"msg": "OK",
"data": {
"id": "1234",
"ym": "gname.com",
"sj": "2020-10-17 10:13:53",
"zcs": "Onlinenic",
"uid": "1xxx",
"zt": 1,
"ztstr": "Success"
}
}
Modified at 2026-05-07 08:25:46