Send the forwarding test message to verify@<domain>
POST
/v1/domains/{id}/forwarding-test
const url = 'https://api.fromenance.com/v1/domains/dom_01J8Z9X0Q3K4M5N6P7R8S9T0V1/forwarding-test';const options = { method: 'POST', headers: {cookie: 'fromenance.session_token=<fromenance.session_token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://api.fromenance.com/v1/domains/dom_01J8Z9X0Q3K4M5N6P7R8S9T0V1/forwarding-test \ --cookie fromenance.session_token=<fromenance.session_token>The message carries a token. When the tenant’s redirect rule delivers it to the tenant inbox with a DKIM or ARC pass for the domain, the rule is marked Working. Poll GET on the same path.
Authorizations
Section titled “Authorizations”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters”id
required
string
Example
dom_01J8Z9X0Q3K4M5N6P7R8S9T0V1Responses
Section titled “ Responses ”Status
Media typeapplication/json
object
status
required
string
sent_at
required
string | null
passed_at
required
string | null
result
required
string | null
to
required
string
Example
{ "status": "not_started"}