Get Domain Settings
Retrieve a domain's tracking settings.
Retrieve a domain's tracking settings, including interaction tracking, custom hostname tracking, and the return-path local part.
Scope: domains.settings.read
Path Parameters
domain_idintegerrequiredThe ID of the domain.
Response
interaction_trackingbooleanoptionalWhether open/click tracking is enabled.
custom_hostname_trackingbooleanoptionalWhether custom hostname tracking is enabled.
return_pathstringoptionalReturn-path local part.
Sample Response
200 OK
{
"data": {
"interaction_tracking": true,
"custom_hostname_tracking": false,
"return_path": "bounces"
}
}