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

# List job team member roles

> Retrieve all job team member roles for the current team. Use the returned `id` values when filtering by `team_member_role_ids` in `POST /v1/jobs/search` or `POST /v1/persons/search`.

Roles are returned in display order (`position` ascending). Every team has at least one owner role (e.g. "Team Lead") indicated by `is_owner_role: true`.



## OpenAPI

````yaml /api-reference/openapi-v1.json get /v1/jobs/team-member-roles
openapi: 3.1.0
info:
  title: Stardex API (v1)
  version: 1.0.0
  description: >-
    Stardex ATS API — manage candidates, jobs, companies, and recruiting
    workflows.
servers:
  - url: https://api.stardex.ai
    description: Production API server
security:
  - bearerAuth: []
tags:
  - name: Persons
    description: Manage person records — contacts, work history, and custom fields.
  - name: Jobs
    description: Manage job postings — pipeline stages, team members, and custom fields.
  - name: Candidates
    description: Manage candidate records and pipeline stage transitions.
  - name: Companies
    description: Browse and retrieve company records.
  - name: Lists
    description: Create, search, and retrieve saved person and company lists.
  - name: Person Activities
    description: Create and manage activity records (notes, emails, meetings) for persons.
  - name: Team Members
    description: List team members for use in search filters and assignments.
  - name: Custom Fields
    description: Retrieve custom field definitions and tag options for search filters.
paths:
  /v1/jobs/team-member-roles:
    get:
      tags:
        - Jobs
      summary: List job team member roles
      description: >-
        Retrieve all job team member roles for the current team. Use the
        returned `id` values when filtering by `team_member_role_ids` in `POST
        /v1/jobs/search` or `POST /v1/persons/search`.


        Roles are returned in display order (`position` ascending). Every team
        has at least one owner role (e.g. "Team Lead") indicated by
        `is_owner_role: true`.
      operationId: listJobTeamMemberRoles
      responses:
        '200':
          description: Roles fetched
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JobTeamMemberRolesResponse'
              example:
                success: true
                data:
                  - id: 345e6789-e01b-23c4-d567-890123456789
                    name: Team Lead
                    is_owner_role: true
                    position: 1
                meta:
                  total: 1
                  offset: 0
                  limit: 1
        '400':
          description: Validation error
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - false
                    description: Always false for error responses.
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                        description: >-
                          Machine-readable error code (e.g. "VALIDATION_ERROR",
                          "NOT_FOUND").
                      message:
                        type: string
                        description: Human-readable error description.
                    required:
                      - code
                      - message
                required:
                  - success
                  - error
        '404':
          description: Resource not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - false
                    description: Always false for error responses.
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                        description: >-
                          Machine-readable error code (e.g. "VALIDATION_ERROR",
                          "NOT_FOUND").
                      message:
                        type: string
                        description: Human-readable error description.
                    required:
                      - code
                      - message
                required:
                  - success
                  - error
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - false
                    description: Always false for error responses.
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                        description: >-
                          Machine-readable error code (e.g. "VALIDATION_ERROR",
                          "NOT_FOUND").
                      message:
                        type: string
                        description: Human-readable error description.
                    required:
                      - code
                      - message
                required:
                  - success
                  - error
components:
  schemas:
    JobTeamMemberRolesResponse:
      type: object
      properties:
        success:
          type: boolean
          enum:
            - true
        data:
          type: array
          items:
            $ref: '#/components/schemas/JobTeamMemberRole'
        meta:
          type: object
          properties:
            total:
              type: number
              description: Total matching records across all pages.
            offset:
              type: number
              description: Current pagination offset.
            limit:
              type: number
              description: Page size used for this request.
          required:
            - total
            - offset
            - limit
      required:
        - success
        - data
        - meta
    JobTeamMemberRole:
      type: object
      properties:
        id:
          type: string
          description: >-
            Role UUID. Use in team_member_role_ids filters in POST
            /v1/jobs/search or POST /v1/persons/search.
        name:
          type: string
          description: Role display name (e.g. "Team Lead", "Executive Sponsor").
        is_owner_role:
          type: boolean
          description: True if this is the primary owner/lead role.
        position:
          type: number
          description: Display sort order (ascending).
      required:
        - id
        - name
        - is_owner_role
        - position
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >-
        Authenticate with a Bearer token: API key, OAuth token, or session
        token.

````