| Field | Type | Description |
|---|---|---|
| zone | String | Zone |
| user | String | User's username |
| targetEmail | String | Target email address |
| status | String | Status of the zone email forwardings |
| dtcreate | String | Date and time when the zone email forwardings was created |
| dtmodify | String | Date and time when the zone email forwardings was modified |
| Action | URL |
|---|---|
| Add Zone Email Forwarding | {{baseUrl}}/dns/v2/zone/:zone/email-forwarding |
| Remove Zone Email Forwarding | {{baseUrl}}/dns/v2/zone/:zone/email-forwarding |
curl --location --request GET 'https://oteapi.webnic.cc/dns/v2/zone/domaintesting123.com/email-forwardings' \
--header 'Authorization: Bearer <token>'{
"code": "1000",
"message": "Command completed successfully.",
"data": [
{
"zone": "domaintesting123.com",
"user": "test",
"targetEmail": "wb.koh@qinetics.net",
"status": "inactive",
"dtcreate": "2023-10-03T14:31:11+08:00",
"dtmodify": "2023-10-03T14:31:11+08:00"
}
]
}