> ## 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.

# Get Support Case Satisfaction Rating

> Returns support case satisfaction rating.



## OpenAPI

````yaml /api-reference/ops/openapi.json get /api/v1/ops/support-cases/{supportCaseId}/satisfaction-rating
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}/satisfaction-rating:
    get:
      tags:
        - Support Case
      summary: Get Support Case Satisfaction Rating
      description: Returns support case satisfaction rating.
      operationId: getSupportCaseSatisfactionRating
      parameters:
        - name: supportCaseId
          required: true
          in: path
          schema:
            type: string
            format: uuid
            description: Support case identifier
            example: 0197f150-40d6-7c1a-bdf2-c5884e07d401
        - 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/GetSupportCaseSatisfactionRating200Response'
        '400':
          $ref: '#/components/responses/GetSupportCaseSatisfactionRating400Response'
        '401':
          $ref: '#/components/responses/GetSupportCaseSatisfactionRating401Response'
        '403':
          $ref: '#/components/responses/GetSupportCaseSatisfactionRating403Response'
        '500':
          $ref: '#/components/responses/GetSupportCaseSatisfactionRating500Response'
      security:
        - bearer: []
        - bearer: []
components:
  responses:
    GetSupportCaseSatisfactionRating200Response:
      content:
        application/json:
          schema:
            type: object
            properties:
              supportCaseSatisfactionRatingId:
                type: string
                format: uuid
                description: Support satisfaction rating identifier
                example: 0197f155-5485-78d5-b4d5-bb6ba54f7059
              supportCaseId:
                type: string
                format: uuid
                description: Support case identifier
                example: 0197f150-40d6-7c1a-bdf2-c5884e07d401
              customerId:
                description: Customer identifier
                example: null
                nullable: true
                type: string
                format: uuid
              ratedByUserId:
                type: string
                format: uuid
                description: Rating user identifier
                example: 0197a7f6-2c4d-74ae-b89b-9d36d9c341f2
              rating:
                type: integer
                description: Support rating from 1 to 5
                example: 5
              comment:
                description: Rating comment
                example: null
                nullable: true
                type: string
                maxLength: 2000
              createdAt:
                type: string
                format: date-time
                description: Created at
                example: '2026-07-10T12:00:00.000Z'
              updatedAt:
                type: string
                format: date-time
                description: Updated at
                example: '2026-07-10T12:00:00.000Z'
            required:
              - supportCaseSatisfactionRatingId
              - supportCaseId
              - ratedByUserId
              - rating
              - createdAt
              - updatedAt
            additionalProperties: false
            description: Support case satisfaction rating
      description: OK
    GetSupportCaseSatisfactionRating400Response:
      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
    GetSupportCaseSatisfactionRating401Response:
      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
    GetSupportCaseSatisfactionRating403Response:
      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
    GetSupportCaseSatisfactionRating500Response:
      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

````