| Field | Type | Description |
|---|---|---|
| id | Number | Reference ID for reseller transfer status |
| domain | String | Domain name |
| ext | String | Extension of domain |
| status | String | Status of the transfer request |
| remark | String | Additional remarks or comments |
| gainingReseller | Boolean | Indicates whether the gaining reseller is involved in the transfer |
| losingReseller | Boolean | Indicates whether the losing reseller is involved in the transfer |
| dtcreate | String | Date and time when the transfer request was created |
curl --location --request GET 'https://oteapi.webnic.cc/domain/v2/reseller-transfer/status?domainName=test-res-transfer1.com' \
--header 'Authorization: Bearer <token>'{
"code": "1000",
"message": "Command completed successfully.",
"data": {
"id": 12,
"domain": "test-res-transfer1",
"ext": "com",
"status": "pending",
"remark": null,
"gainingReseller": false,
"losingReseller": false,
"dtcreate": "2023-09-26T08:41:09+08:00"
}
}