Sequences

Update Sequence Settings

PATCH /v1/sequences/{sequenceId}/settings

PATCH/v1/sequences/{sequenceId}/settings
PATCH
/v1/sequences/{sequenceId}/settings

Update sequence settings and/or schedule

Send a partial update — only the codes in settings[] are changed, the rest are preserved.

Unsubscribe link (code 1)
The value must contain the {{link}} placeholder (the server swaps in the recipient-specific unsubscribe URL when the email is sent). A non-empty value without {{link}} is rejected.

Accepted preset snippets (use these verbatim, or provide any custom HTML that includes {{link}}):

  1. If you'd prefer not to receive email from me, <a href="{{link}}" target="_blank">Unsubscribe here</a>.
  2. If you don't want to receive such emails in future, <a href="{{link}}" target="_blank">Unsubscribe here</a>.
  3. Not up for all these emails? No Sweat! you can, <a href="{{link}}" target="_blank">Unsubscribe here</a>.

Pass an empty string ("") to disable the unsubscribe link entirely.

Mutually exclusive with unsubscribe-text (code 2). Setting one to a non-empty value automatically clears the other.

Authorization

x-api-key<token>

API key for Open API authentication

In: header

Request Body

application/jsonRequired

settingsarray<object>

Array of settings to update. All codes are forwarded.

scheduleIdstring

Hashed ID of the schedule to assign to this sequence.

Path Parameters

sequenceIdstring

The ID of the sequence

Responses

200
Sequence settings updated

Request

curl -X PATCH \
  "https://open-api.saleshandy.com/v1/sequences/{sequenceId}/settings" \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "settings": [
    {
      "value": "string"
    }
  ],
  "scheduleId": "string"
}'

Response

No response body