| Field | Type | Description |
|---|---|---|
| id | Number | Reference ID for registrar transfer away status |
| uuid | String | UUID for the transfer request |
| domain | String | Domain name |
| ext | String | Extension of domain |
| status | String | Status of the transfer request |
| remark | String | Additional remarks or comments |
| dtcreate | String | Date and time when the transfer request was created |
| registrantApproved | Boolean | Indicates whether the registrant has approved the transfer |
| resellerApproved | Boolean | Indicates whether the reseller has approved the transfer |
| Action | URL |
|---|---|
| Update Registrar Transfer Away Status | {{baseUrl}}/domain/v2/transfer-away/status/:id |
curl --location --request GET 'https://oteapi.webnic.cc/domain/v2/transfer-away/status?domainName=weisstest12312.com' \
--header 'Authorization: Bearer <token>'{
"code": "1000",
"message": "Command completed successfully.",
"data": {
"id": 30,
"uuid": "8a503690-f6f7-4e80-91d7-3b7846f81387",
"domain": "weisstest12312",
"ext": "com",
"status": "pending",
"remark": "",
"dtcreate": "2023-10-03T10:03:15+08:00",
"registrantApproved": false,
"resellerApproved": false
}
}