# Get Email Forwarding Retrieves the details of a specific email forwarding entry. Endpoint: GET /core/v1/domains/{domainName}/email/forwarding/{emailBox} Version: 1.3.1 Security: BasicAuth ## Path parameters: - `domainName` (string, required) DomainName is the domain to list email forwarded box for. - `emailBox` (string, required) EmailBox is which email box to retrieve. ## Response 200 fields (application/json): - `domainName` (string, required) DomainName is the domain part of the email address to forward. Example: "example.com" - `emailBox` (string, required) EmailBox is the user portion of the email address to forward. Example: "admin" - `emailTo` (string, required) EmailTo is the entire email address to forward email to. Example: "webmaster@example.com" ## Response 403 fields (application/json): - `message` (string, required) A human-readable message providing more details about the error Example: "Permission denied" - `details` (string,null) Additional context or information about the error Example: "Failed authentication" ## Response 404 fields (application/json): - `message` (string, required) A human-readable message providing more details about the error Example: "Not Found" - `details` (string,null) Additional context or information about the error Example: "The requested domain does not exist." ## Response 429 fields (application/json): - `message` (string) A human-readable message providing more details about the error Example: "Rate Limit Exceeded" ## Response 500 fields (application/json): - `message` (string, required) A human-readable message providing more details about the error. Example: "Internal Server Error" - `details` (string,null) Additional context or information about the error. Example: "Something went wrong."