| 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/20' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>'{
"code": "1000",
"message": "Command completed successfully.",
"data": {
"id": 20,
"uuid": "95e50c17-4b29-4f78-b695-5a3adf158b68",
"domain": "weisstest12312",
"ext": "com",
"status": "reject",
"remark": "",
"dtcreate": "2023-10-03T08:36:43+08:00",
"registrantApproved": false,
"resellerApproved": false
}
}