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

# List job stages

> Returns job-stage summaries and resolved settings for the requested stage IDs or a single job. At least one of ids or job_id is required; when both are supplied, only stages that satisfy both are returned. This operation returns a single unpaginated result page.

<Note>**Beta**: this endpoint may change or be removed without notice while in beta. There is no compatibility promise until it reaches general availability.</Note>


## OpenAPI

````yaml /openapi.json get /v1/job-stages
openapi: 3.1.0
info:
  title: ModernLoop Platform API
  version: 0.1.0
  description: The ModernLoop Platform API for managing recruiting workflows.
  contact:
    email: support@modernloop.io
servers:
  - url: https://api.modernloop.io
security: []
tags:
  - name: Application
  - name: Candidate
  - name: Interview Event
  - name: Interview Module
  - name: Interviewer
  - name: Job
  - name: Job Stage
  - name: Organization
  - name: Schedule
  - name: Scheduling Task
  - name: Task Queue
  - name: Template
paths:
  /v1/job-stages:
    get:
      tags:
        - Job Stage
      summary: List job stages
      description: >-
        Returns job-stage summaries and resolved settings for the requested
        stage IDs or a single job. At least one of ids or job_id is required;
        when both are supplied, only stages that satisfy both are returned. This
        operation returns a single unpaginated result page.
      operationId: listJobStages
      parameters:
        - schema:
            type: string
            description: >-
              Opaque pagination cursor from the previous page's
              pagination.next_cursor, bound to the same query filters.
          required: false
          description: >-
            Opaque pagination cursor from the previous page's
            pagination.next_cursor, bound to the same query filters.
          name: cursor
          in: query
        - schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 25
            description: Page size. Must be between 1 and 100; defaults to 25.
          required: false
          description: Page size. Must be between 1 and 100; defaults to 25.
          name: limit
          in: query
        - schema:
            type:
              - array
              - 'null'
            items:
              type: string
              pattern: >-
                ^(?:stg_)?(?:[0-9a-fA-F]{32}|[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12})$
              description: >-
                a job stage ID. Accepts the canonical prefixed compact UUID, a
                prefixed dashed UUID, a bare dashed UUID, or a bare compact
                UUID; input is case-insensitive.
              example: stg_a1b2c3d4e5f64789a1b2c3d4e5f64789
            description: Comma-separated list of IDs; maximum 100 values.
          required: false
          description: Comma-separated list of IDs; maximum 100 values.
          name: ids
          in: query
          style: form
          explode: false
        - schema:
            type: string
            pattern: >-
              ^(?:job_)?(?:[0-9a-fA-F]{32}|[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12})$
            description: >-
              a job ID. Accepts the canonical prefixed compact UUID, a prefixed
              dashed UUID, a bare dashed UUID, or a bare compact UUID; input is
              case-insensitive.
            example: job_a1b2c3d4e5f64789a1b2c3d4e5f64789
          required: false
          description: >-
            Matches stages belonging to this exact job ID. When ids is also
            supplied, results must match both filters.
          name: job_id
          in: query
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/JobStage'
                  pagination:
                    $ref: '#/components/schemas/Pagination'
                required:
                  - data
                  - pagination
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '409':
          description: Conflict
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '410':
          description: Gone
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - bearerAuth: []
components:
  schemas:
    JobStage:
      type: object
      properties:
        id:
          type: string
          pattern: ^stg_[0-9a-f]{32}$
          description: >-
            Canonical job stage ID (stg_ followed by 32 lowercase hexadecimal
            UUID characters).
          example: stg_a1b2c3d4e5f64789a1b2c3d4e5f64789
        job_id:
          type: string
          pattern: ^job_[0-9a-f]{32}$
          description: >-
            Canonical job ID (job_ followed by 32 lowercase hexadecimal UUID
            characters).
          example: job_a1b2c3d4e5f64789a1b2c3d4e5f64789
        name:
          type: string
        index:
          type: integer
        schedulable:
          type: boolean
        ats:
          type:
            - object
            - 'null'
          properties:
            type:
              type: string
              enum:
                - GREENHOUSE
                - ASHBY
                - LEVER
                - WORKDAY
                - SMARTRECRUITERS
                - GEM
                - KOMBO
            id:
              type: string
          required:
            - type
            - id
        has_custom_interview_plan:
          type: boolean
        settings:
          type: object
          properties:
            automation:
              type: object
              properties:
                is_automated_task_enabled:
                  type: boolean
                create_automated_task_on_behalf_of:
                  type:
                    - string
                    - 'null'
                  pattern: ^emp_[0-9a-f]{32}$
                  description: >-
                    Canonical employee ID (emp_ followed by 32 lowercase
                    hexadecimal UUID characters).
                  example: emp_a1b2c3d4e5f64789a1b2c3d4e5f64789
                default_task:
                  type:
                    - string
                    - 'null'
                  enum:
                    - ASSIGN_TASK
                    - AVAILABILITY_REQUEST
                    - SELF_SCHEDULE_REQUEST
                  description: >-
                    Default action created when this stage automation runs.
                    ASSIGN_TASK is the stage-default action name used by the
                    job-stage service, distinct from a task-create request's
                    ASSIGN command type.
              required:
                - is_automated_task_enabled
                - create_automated_task_on_behalf_of
                - default_task
            candidate_notifications:
              type: object
              properties:
                should_send_email:
                  type: boolean
                should_send_calendar_invite:
                  type: boolean
                should_send_chat_message:
                  type: boolean
                should_send_candidate_pulse:
                  type: boolean
              required:
                - should_send_email
                - should_send_calendar_invite
                - should_send_chat_message
                - should_send_candidate_pulse
            self_schedule_defaults:
              type:
                - object
                - 'null'
              properties:
                advance_notice_in_hours:
                  type:
                    - integer
                    - 'null'
                rolling_days:
                  type:
                    - integer
                    - 'null'
                use_rolling_days:
                  type:
                    - boolean
                    - 'null'
                number_of_days:
                  type:
                    - integer
                    - 'null'
                location:
                  type:
                    - string
                    - 'null'
                  enum:
                    - NONE
                    - ZOOM
                    - GOOGLE_MEET
                    - PHONE
                    - CUSTOM
                    - MICROSOFT_TEAMS
                  description: >-
                    Location type for self-scheduled interviews. GOOGLE_MEET
                    creates a Google Meet link.
                custom_location:
                  type:
                    - string
                    - 'null'
                is_private_calendar_event:
                  type:
                    - boolean
                    - 'null'
                should_respect_load_limit:
                  type:
                    - boolean
                    - 'null'
                can_schedule_over_recruiting_keywords:
                  type:
                    - boolean
                    - 'null'
                can_schedule_over_available_keywords:
                  type:
                    - boolean
                    - 'null'
                can_schedule_over_free_time:
                  type:
                    - boolean
                    - 'null'
                candidate_note:
                  type:
                    - string
                    - 'null'
              required:
                - advance_notice_in_hours
                - rolling_days
                - use_rolling_days
                - number_of_days
                - location
                - custom_location
                - is_private_calendar_event
                - should_respect_load_limit
                - can_schedule_over_recruiting_keywords
                - can_schedule_over_available_keywords
                - can_schedule_over_free_time
                - candidate_note
            availability_request_defaults:
              type:
                - object
                - 'null'
              properties:
                number_of_days:
                  type:
                    - integer
                    - 'null'
                minutes_per_day:
                  type:
                    - integer
                    - 'null'
                minimum_time_block_minutes:
                  type:
                    - integer
                    - 'null'
                advance_notice_minutes:
                  type:
                    - integer
                    - 'null'
                rolling_days:
                  type:
                    - integer
                    - 'null'
                use_rolling_days:
                  type:
                    - boolean
                    - 'null'
                timeframe_number_of_days:
                  type:
                    - integer
                    - 'null'
                should_respect_load_limit:
                  type:
                    - boolean
                    - 'null'
                can_schedule_over_recruiting_keywords:
                  type:
                    - boolean
                    - 'null'
                can_schedule_over_available_keywords:
                  type:
                    - boolean
                    - 'null'
                can_schedule_over_free_time:
                  type:
                    - boolean
                    - 'null'
                candidate_note:
                  type:
                    - string
                    - 'null'
              required:
                - number_of_days
                - minutes_per_day
                - minimum_time_block_minutes
                - advance_notice_minutes
                - rolling_days
                - use_rolling_days
                - timeframe_number_of_days
                - should_respect_load_limit
                - can_schedule_over_recruiting_keywords
                - can_schedule_over_available_keywords
                - can_schedule_over_free_time
                - candidate_note
          required:
            - automation
            - candidate_notifications
            - self_schedule_defaults
            - availability_request_defaults
        created_at:
          type: string
          format: date-time
          description: ISO 8601 timestamp.
        updated_at:
          type: string
          format: date-time
          description: ISO 8601 timestamp.
      required:
        - id
        - job_id
        - name
        - index
        - schedulable
        - ats
        - has_custom_interview_plan
        - settings
        - created_at
        - updated_at
    Pagination:
      type: object
      properties:
        next_cursor:
          type:
            - string
            - 'null'
      required:
        - next_cursor
    ErrorResponse:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
              enum:
                - UNAUTHENTICATED
                - API_ACCESS_DISABLED
                - SCOPE_MISSING
                - INSUFFICIENT_SCOPE
                - VALIDATION_FAILED
                - INVALID_CURSOR
                - PAYLOAD_TOO_LARGE
                - NOT_FOUND
                - NOT_FOUND_MAY_BE_SYNCING
                - CANDIDATE_ANONYMIZED
                - TASK_STAGE_NOT_SCHEDULABLE
                - DUPLICATE_REQUEST_OPEN
                - IDEMPOTENCY_KEY_REQUIRED
                - IDEMPOTENCY_KEY_REUSED
                - PREVIEW_EXPIRED
                - PREVIEW_STALE
                - RATE_LIMITED
                - CONFLICT
                - NOT_IMPLEMENTED
                - INTERNAL
                - UPSTREAM_TIMEOUT
            message:
              type: string
            docs_url:
              type: string
              format: uri
          required:
            - code
            - message
      required:
        - error
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API tokens are passed as Bearer tokens.

````