v1
latestOpenAPI 3.1.02026-07-26359254.7 MBMark or unmark contacts as bounced
<small>Requires the contacts:operate scope (or a broader one that includes it).</small>
Marks the given contacts as bounced (isBounced: true) or clears the bounced flag (isBounced: false) across every sequence they are currently enrolled in.
When clearing the flag (isBounced: false), resendEmails is required: pass true to retry the previously bounced step or false to leave the schedule untouched. When marking as bounced (isBounced: true), resendEmails must be omitted.
To restrict the change to a single sequence, use POST /v3/sequences/{id}/contacts/set-bounced instead.
Request body
Response
Non-atomic result. The response body is a dictionary keyed by contact id listing per-item failures. Empty object {} means all contacts were updated successfully.
Per-item failures use the ContactError enum. Common per-item slugs:
| Slug | Meaning |
|---|---|
| notFound | Contact does not exist |
| forbidden | Caller lacks permission for this contact |
| sequenceNotFound | Derived sequence not accessible |
| invalidInput | Value rejected for this contact |
Dictionary of per-item failures keyed by contact id. Empty object {} means all succeeded.