HostingOther
List accounts without signatures
GET
/api/domains/{domain_code}/settings/no_signatureReturns email accounts in the domain that do not have a configured signature.
Authorization
api_key X-Api-Token<token>
API token used to authenticate requests.
In: header
Path Parameters
domain_code*string
Domain code: D followed by 9 digits. Example: D123456789.
Response Body
application/json
curl -X GET "https://example.com/api/domains/string/settings/no_signature" \ -H "X-Api-Token: YOUR_API_TOKEN" \ -H "Accept: application/json"{
"no_signature": [
{
"email_address": "string",
"body": "string",
"exist_in_addressbook": 0
}
]
}