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

# List Support Case Assignments

> Lists support case assignments.



## OpenAPI

````yaml /api-reference/ops/openapi.json get /api/v1/ops/support-cases/{supportCaseId}/assignments
openapi: 3.0.0
info:
  title: OABUS OPS API
  description: OABUS API
  version: '1.0'
  contact: {}
servers: []
security: []
tags: []
paths:
  /api/v1/ops/support-cases/{supportCaseId}/assignments:
    get:
      tags:
        - Support Case
      summary: List Support Case Assignments
      description: Lists support case assignments.
      operationId: listSupportCaseAssignments
      parameters:
        - name: supportCaseId
          required: true
          in: path
          schema:
            type: string
            format: uuid
            description: Support case identifier
            example: 0197f150-40d6-7c1a-bdf2-c5884e07d401
        - name: limit
          required: false
          in: query
          schema:
            default: 10
            description: Items per page
            example: 10
            type: number
        - name: page
          required: false
          in: query
          schema:
            default: 1
            description: Page number
            example: 1
            type: number
        - name: sortBy
          required: false
          in: query
          schema:
            default: assignedAt
            description: Field to sort by
            example: assignedAt
            type: string
            enum:
              - assignedAt
        - name: sortOrder
          required: false
          in: query
          schema:
            default: desc
            description: Sort order
            example: desc
            type: string
            enum:
              - asc
              - desc
        - name: fields
          required: false
          in: query
          description: >-
            Comma-separated list of fields to include in the response. Supports
            dot notation for nested projection (e.g.
            `id,name,user.email,trips.route.id`). Unknown fields are silently
            dropped.
          schema:
            type: string
      responses:
        '200':
          $ref: '#/components/responses/ListSupportCaseAssignments200Response'
        '400':
          $ref: '#/components/responses/ListSupportCaseAssignments400Response'
        '401':
          $ref: '#/components/responses/ListSupportCaseAssignments401Response'
        '403':
          $ref: '#/components/responses/ListSupportCaseAssignments403Response'
        '500':
          $ref: '#/components/responses/ListSupportCaseAssignments500Response'
      security:
        - bearer: []
        - bearer: []
components:
  responses:
    ListSupportCaseAssignments200Response:
      content:
        application/json:
          schema:
            type: object
            properties:
              data:
                type: array
                items:
                  type: object
                  properties:
                    supportCaseAssignmentId:
                      type: string
                      format: uuid
                      description: Support case assignment identifier
                      example: 0197f154-420b-7840-912d-dff926b3e3b6
                    supportCaseId:
                      type: string
                      format: uuid
                      description: Support case identifier
                      example: 0197f150-40d6-7c1a-bdf2-c5884e07d401
                    fromUserId:
                      description: Previous user identifier
                      example: null
                      nullable: true
                      type: string
                      format: uuid
                    toUserId:
                      description: New user identifier
                      example: null
                      nullable: true
                      type: string
                      format: uuid
                    assignedByUserId:
                      type: string
                      format: uuid
                      description: Assigning user identifier
                      example: 0197a805-0910-7eb2-bae7-90a13df2a9b2
                    fromQueue:
                      description: Previous queue
                      example: null
                      nullable: true
                      type: string
                      maxLength: 120
                    toQueue:
                      description: New queue
                      example: customer-support
                      nullable: true
                      type: string
                      maxLength: 120
                    reason:
                      description: Assignment reason
                      example: null
                      nullable: true
                      type: string
                      maxLength: 1000
                    assignedAt:
                      type: string
                      format: date-time
                      description: Assigned at
                      example: '2026-07-10T12:00:00.000Z'
                    createdAt:
                      type: string
                      format: date-time
                      description: Created at
                      example: '2026-07-10T12:00:00.000Z'
                  required:
                    - supportCaseAssignmentId
                    - supportCaseId
                    - assignedByUserId
                    - assignedAt
                    - createdAt
                  additionalProperties: false
                  description: Support case assignment
              meta:
                type: object
                properties:
                  limit:
                    type: number
                    description: Items per page
                    example: 10
                  page:
                    type: number
                    description: Current page
                    example: 1
                  totalItems:
                    type: number
                    description: Total items
                    example: 100
                  totalPages:
                    type: number
                    description: Total pages
                    example: 10
                required:
                  - limit
                  - page
                  - totalItems
                  - totalPages
                additionalProperties: false
            required:
              - data
              - meta
            additionalProperties: false
            description: Support case assignment page
      description: OK
    ListSupportCaseAssignments400Response:
      content:
        application/json:
          example:
            errors:
              - message: required
                path: name
            message: Bad Request Error
            statusCode: 400
          schema:
            properties:
              message:
                type: string
              statusCode:
                enum:
                  - 400
                type: number
              errors:
                items:
                  properties:
                    message:
                      type: string
                    path:
                      type: string
                  required:
                    - message
                    - path
                  type: object
                type: array
            required:
              - message
              - statusCode
            type: object
      description: Bad Request Error
    ListSupportCaseAssignments401Response:
      content:
        application/json:
          example:
            message: Missing or invalid access token
            statusCode: 401
          schema:
            properties:
              message:
                type: string
              statusCode:
                enum:
                  - 401
                type: number
            required:
              - message
              - statusCode
            type: object
      description: Unauthorized
    ListSupportCaseAssignments403Response:
      content:
        application/json:
          example:
            message: Insufficient permissions
            statusCode: 403
          schema:
            properties:
              message:
                type: string
              statusCode:
                enum:
                  - 403
                type: number
            required:
              - message
              - statusCode
            type: object
      description: Forbidden
    ListSupportCaseAssignments500Response:
      content:
        application/json:
          example:
            message: Internal Server Error
            statusCode: 500
          schema:
            properties:
              message:
                type: string
              statusCode:
                enum:
                  - 500
                type: number
            required:
              - message
              - statusCode
            type: object
      description: Internal Server Error
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````