Beta. This endpoint is in beta. Behavior, parameters, and response shapes may change without notice.
Sets the in-sequence status (active / paused / finished / outOfOffice) for the given contacts across every sequence they are currently enrolled in.
Replied and Bounced are not values of this enum — use POST /v3/contacts/set-replied or POST /v3/contacts/set-bounced for those.
To restrict the change to a single sequence, use POST /v3/sequences/{id}/contacts/set-status-in-sequence instead.
Documentation Index
Fetch the complete documentation index at: https://docs.reply.io/llms.txt
Use this file to discover all available pages before exploring further.
Authenticate every request with a Bearer token. Pass your Reply API key in the
Authorization header:
Authorization: Bearer <your-api-key>Get your API key from the Reply dashboard: Settings → API Key.
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 error codes mirror the controller's ContactError:
| Code | Meaning |
|---|---|
| 1 | NotFound — contact does not exist |
| 3 | Forbidden — caller lacks permission for this contact |
| 5 | SequenceNotFound — derived sequence not accessible |
| 8 | InvalidInput — value rejected for this contact |
Dictionary of per-item failures keyed by contact id. Empty object {} means all succeeded.
Per-item error for non-atomic bulk operations. Only failed items are returned in the response dictionary. Items not present in the dictionary succeeded.