> ## Documentation Index
> Fetch the complete documentation index at: https://docs.unifygtm.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List sequences

> List the sequences in your organization.



## OpenAPI

````yaml GET /sequences
openapi: 3.1.0
info:
  title: Unify Sequences API
  summary: Interact with sequences and sequence enrollments within the Unify platform.
  version: '1'
  termsOfService: https://www.unifygtm.com/legal/terms-and-conditions
  contact:
    name: Unify Support
    url: https://www.unifygtm.com/support
    email: support@unifygtm.com
servers:
  - url: https://api.unifygtm.com/sequences/v1
    variables: {}
security:
  - ApiKeyAuth: []
tags:
  - name: Sequences
  - name: Sequence Enrollment Steps
  - name: Sequence Enrollments
paths:
  /sequences:
    get:
      tags:
        - Sequences
      description: |-
        List sequences — automated series of outreach steps (emails, tasks, and
        timing conditions) that run against enrolled people.
      operationId: list_sequences
      parameters:
        - name: cursor
          in: query
          required: false
          description: Opaque cursor returned by the previous page.
          schema:
            type: string
          explode: false
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            minimum: 1
            maximum: 100
          explode: false
      responses:
        '200':
          description: Response returned when listing sequences.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListSequencesResponse'
        '400':
          description: Response for any operation that results in a bad request error.
          content:
            application/json:
              schema:
                type: object
                required:
                  - status
                properties:
                  status:
                    type: string
                    enum:
                      - bad_request
                  errors:
                    type: array
                    items:
                      $ref: '#/components/schemas/UResponses.BadRequestError'
                  message:
                    type: string
                description: >-
                  Response for any operation that results in a bad request
                  error.
        '401':
          description: Response for any operation that results in an unauthorized error.
          content:
            application/json:
              schema:
                type: object
                required:
                  - status
                  - message
                properties:
                  status:
                    type: string
                    enum:
                      - unauthorized
                  message:
                    type: string
                description: >-
                  Response for any operation that results in an unauthorized
                  error.
        '429':
          description: Response for any operation that exceeds a rate limit.
          content:
            application/json:
              schema:
                type: object
                required:
                  - status
                  - message
                properties:
                  status:
                    type: string
                    enum:
                      - rate_limited
                  message:
                    type: string
                description: Response for any operation that exceeds a rate limit.
        '500':
          description: Response for any operation that results in an internal server error.
          content:
            application/json:
              schema:
                type: object
                required:
                  - status
                  - message
                properties:
                  status:
                    type: string
                    enum:
                      - error
                  message:
                    type: string
                description: >-
                  Response for any operation that results in an internal server
                  error.
components:
  schemas:
    ListSequencesResponse:
      type: object
      required:
        - sequences
        - next_cursor
      properties:
        sequences:
          type: array
          items:
            $ref: '#/components/schemas/Sequence'
        next_cursor:
          type: string
          nullable: true
      description: Response returned when listing sequences.
    UResponses.BadRequestError:
      type: object
      required:
        - code
      properties:
        code:
          type: string
        path:
          type: array
          items:
            anyOf:
              - type: string
              - type: integer
        object_api_name:
          type: string
        attribute_api_name:
          type: string
      allOf:
        - type: object
          additionalProperties: {}
      description: Validation error detail returned for bad request responses.
    Sequence:
      type: object
      required:
        - id
        - created_at
        - updated_at
        - owner
        - name
        - is_paused
        - send_schedule
        - sequence_ruleset
      properties:
        id:
          $ref: '#/components/schemas/uuid'
        created_at:
          $ref: '#/components/schemas/datetime'
        updated_at:
          $ref: '#/components/schemas/datetime'
        owner:
          $ref: '#/components/schemas/SequenceOwner'
        name:
          type: string
        is_paused:
          type: boolean
        send_schedule:
          type: object
          allOf:
            - $ref: '#/components/schemas/SequenceSendSchedule'
          nullable: true
        sequence_ruleset:
          type: object
          allOf:
            - $ref: '#/components/schemas/SequenceRuleset'
          nullable: true
      description: A sequence.
    uuid:
      type: string
      format: uuid
      description: String UUID value.
    datetime:
      type: string
      format: date-time
      description: String value representing an RFC 3339 datetime.
    SequenceOwner:
      type: object
      required:
        - id
        - email
        - first_name
        - last_name
      properties:
        id:
          $ref: '#/components/schemas/uuid'
        email:
          $ref: '#/components/schemas/email'
        first_name:
          type: string
          nullable: true
        last_name:
          type: string
          nullable: true
      description: Owner details embedded in sequence responses.
    SequenceSendSchedule:
      type: object
      required:
        - id
        - created_at
        - updated_at
        - is_default
        - name
        - rules
      properties:
        id:
          $ref: '#/components/schemas/uuid'
        created_at:
          $ref: '#/components/schemas/datetime'
        updated_at:
          $ref: '#/components/schemas/datetime'
        is_default:
          type: boolean
        name:
          type: string
        rules:
          $ref: '#/components/schemas/EmailSendScheduleRules'
      description: Email send schedule embedded in sequence responses.
    SequenceRuleset:
      type: object
      required:
        - id
        - created_at
        - updated_at
        - name
        - is_default
        - automatic_enrollment_task_assignment
        - automatic_enrollment_task_assignment_user_id
        - manual_enrollment_task_assignment
        - manual_enrollment_task_assignment_user_id
        - opt_out_message
        - allow_same_sequence_reenrollment
        - block_reenrollment_value
        - block_reenrollment_units
      properties:
        id:
          $ref: '#/components/schemas/uuid'
        created_at:
          $ref: '#/components/schemas/datetime'
        updated_at:
          $ref: '#/components/schemas/datetime'
        name:
          type: string
        is_default:
          type: boolean
        automatic_enrollment_task_assignment:
          $ref: '#/components/schemas/AutomaticEnrollmentTaskAssignment'
        automatic_enrollment_task_assignment_user_id:
          type: string
          allOf:
            - $ref: '#/components/schemas/uuid'
          nullable: true
        manual_enrollment_task_assignment:
          $ref: '#/components/schemas/ManualEnrollmentTaskAssignment'
        manual_enrollment_task_assignment_user_id:
          type: string
          allOf:
            - $ref: '#/components/schemas/uuid'
          nullable: true
        opt_out_message:
          type: string
          nullable: true
        allow_same_sequence_reenrollment:
          type: boolean
        block_reenrollment_value:
          type: integer
          nullable: true
        block_reenrollment_units:
          allOf:
            - $ref: '#/components/schemas/UnitOfTime'
          nullable: true
      description: Sequence ruleset embedded in sequence responses.
    email:
      type: string
      format: email
      description: String value representing an email address.
    EmailSendScheduleRules:
      type: object
      required:
        - time_zone
        - send_days
        - skip_us_holidays
        - excluded_dates
      properties:
        time_zone:
          type: string
        send_days:
          $ref: '#/components/schemas/EmailSendDays'
        skip_us_holidays:
          type: boolean
        excluded_dates:
          type: array
          items:
            $ref: '#/components/schemas/ExcludedEmailSendDate'
      description: Sequence email send schedule rules.
    AutomaticEnrollmentTaskAssignment:
      type: string
      enum:
        - ASSIGN_TO_MAILBOX_OWNER
        - ASSIGN_TO_USER
      description: >-
        Assignment strategy for tasks created from automatic sequence
        enrollments.
    ManualEnrollmentTaskAssignment:
      type: string
      enum:
        - ASSIGN_TO_ENROLLER
        - ASSIGN_TO_MAILBOX_OWNER
        - ASSIGN_TO_USER
      description: Assignment strategy for tasks created from manual sequence enrollments.
    UnitOfTime:
      type: string
      enum:
        - MINUTE
        - HOUR
        - DAY
        - WEEK
        - MONTH
        - YEAR
      description: Unit used for sequence reenrollment blocking windows.
    EmailSendDays:
      type: object
      required:
        - '1'
        - '2'
        - '3'
        - '4'
        - '5'
        - '6'
        - '7'
      properties:
        '1':
          type: array
          items:
            $ref: '#/components/schemas/EmailSendWindow'
          nullable: true
        '2':
          type: array
          items:
            $ref: '#/components/schemas/EmailSendWindow'
          nullable: true
        '3':
          type: array
          items:
            $ref: '#/components/schemas/EmailSendWindow'
          nullable: true
        '4':
          type: array
          items:
            $ref: '#/components/schemas/EmailSendWindow'
          nullable: true
        '5':
          type: array
          items:
            $ref: '#/components/schemas/EmailSendWindow'
          nullable: true
        '6':
          type: array
          items:
            $ref: '#/components/schemas/EmailSendWindow'
          nullable: true
        '7':
          type: array
          items:
            $ref: '#/components/schemas/EmailSendWindow'
          nullable: true
      description: >-
        Mapping from ISO weekday number (Monday = 1, Sunday = 7) to send
        windows.

        A null value means sending is disabled for that day.
    ExcludedEmailSendDate:
      type: object
      required:
        - date
      properties:
        date:
          $ref: '#/components/schemas/date'
        should_recur:
          type: boolean
      description: Custom date skipped by a sequence email send schedule.
    EmailSendWindow:
      type: object
      required:
        - start_time
        - end_time
      properties:
        start_time:
          $ref: '#/components/schemas/EmailSendWindowTime'
        end_time:
          $ref: '#/components/schemas/EmailSendWindowTime'
      description: Time window during which sequence emails may be sent.
    date:
      type: string
      format: date
      description: String value representing an RFC 3339 full date.
    EmailSendWindowTime:
      type: object
      required:
        - hour
        - minute
      properties:
        hour:
          type: integer
          minimum: 0
          maximum: 23
        minute:
          type: integer
          minimum: 0
          maximum: 59
      description: Local wall-clock time used in a sequence email send window.
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````