Send-email responses
The send endpoint requires
from, to, and subject plus at least one of html or text.
An audience ID must be the only to value and cannot be combined with cc or bcc.
Cancellation responses
A single-message cancellation succeeds only while the record isscheduled.
If dispatch already began, Signal returns a conflict rather than claiming the message was cancelled.
The bulk cancellation operation affects messages that are currently scheduled; it does not recall messages already handed off.
Structured problems
Capture the response’s problem type, title, status, detail, and structured fields. Do not reduce every failure to the HTTP reason phrase; the problem body identifies the relevant customer condition.Before retrying
- Correct
400,401,403,413, and422conditions first. - For
429, honorRetry-Afterand use bounded backoff. - Preserve the same body
idempotencyKeyfor the same logical send. - Do not automatically resend bounced, complained, unsubscribed, or suppressed recipients.
- For
indeterminate, inspect the existing record before creating any new send.
Evidence for support
Provide the Signal email ID, UTC timestamp, endpoint, HTTP status, problem type, and project identifier. Redact API keys, Authorization headers, recipient content, and attachment data.API errors
Review the shared problem format and status-code behavior.