Other types

Learn about other types supported by the sequences API

The monday.com sequences API supports listing enrollable email sequences and enrolling board items into those sequences.

The types below are used by the sequences query and mutation, and are not independently queryable.

🚧

Only available in API versions 2026-04 and later


Sequence

An object representing an email sequence that items can be enrolled in.

FieldTypeDescription
idID!The sequence's unique identifier.
titleStringDisplay title.
statusSequenceStatusLifecycle state of the sequence.
context_typeSequenceContextScope of the sequence (e.g., board).
context_idIDIdentifier for the context (e.g., board ID).
user_idIDUser associated with the sequence.
step_countIntNumber of steps in the sequence.
durationIntTotal duration associated with the sequence.
created_atDateCreation timestamp.
updated_atDateLast update timestamp.

SequenceStatus

An enum describing the state of a sequence.

Enum ValueDescription
ACTIVESequence is active and can be used for enrollment.
INACTIVESequence is disabled.
MISSING_CONFIGSequence is missing required configuration.
DELETEDSequence has been deleted.

SequenceContext

An enum describing where a sequence is scoped.

Enum ValueDescription
BOARDSequence is associated with a board context.

EnrollToSequenceInput

Input for enrolling items into a sequence.

FieldTypeDescription
sequence_idID!The sequence to enroll items into.
board_idID!The board containing the items.
item_ids[ID!]!Items to enroll. Maximum 50 IDs per request.

EnrollToSequenceResult

Result of the enroll_items_to_sequence mutation.

FieldTypeDescription
succeeded_item_ids[ID!]Item IDs that were enrolled successfully.
failed_item_ids[ID!]Item IDs that could not be enrolled.