Sequences

Update Sequence Schedule

PATCH /v1/sequences/{sequenceId}/schedule

PATCH/v1/sequences/{sequenceId}/schedule
PATCH
/v1/sequences/{sequenceId}/schedule

Update the schedule assigned to a sequence

Assign a different schedule to the sequence. The schedule controls which days and time windows emails in this sequence are sent.

Pass scheduleId (hashed) in the body. The response returns the full assigned schedule (id, name, timezone, isDefault). Use Get Schedules to list the caller's available schedule IDs.

Authorization

x-api-key<token>

API key for Open API authentication

In: header

Request Body

application/jsonRequired

scheduleIdstring

Hashed ID of the schedule to assign to the sequence.

Example: "aB3xK9"

Path Parameters

sequenceIdstring

The ID of the sequence

Responses

200
Sequence schedule updated

Request

curl -X PATCH \
  "https://open-api.saleshandy.com/v1/sequences/{sequenceId}/schedule" \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "scheduleId": "aB3xK9"
}'

Response

No response body