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

# List external vetting appeals

> Returns the external vetting appeals for the 10DLC Brand identified by `brand_id`.



## OpenAPI

````yaml https://wavix.github.io/wavix-openapi/wavix-api.yaml get /v3/10dlc/brands/{brand_id}/vettings/appeals
openapi: 3.1.0
info:
  title: Wavix APIs
  description: >-
    Wavix provides robust APIs that let you integrate voice and text messaging
    features directly into your app. Send text, place calls, and access detailed
    reports  programmatically.
  termsOfService: https://wavix.com/terms-and-conditions
  license:
    name: MIT
    identifier: MIT
  contact:
    name: Wavix
    url: https://wavix.com
    email: support@wavix.com
  version: '1.0'
servers:
  - url: https://api.wavix.com
    description: https://api.wavix.com
    variables: {}
security:
  - bearerAuth: []
tags:
  - name: SIP trunks
    description: SIP trunks
  - name: Buy
    description: Numbers
  - name: Cart
    description: Numbers
  - name: My numbers
    description: Numbers
  - name: Billing
    description: Billing, transactions, and invoices
  - name: Profile
    description: Account profile and customer information
  - name: CDRs
    description: Call detail records and call history
  - name: Speech Analytics
    description: Call transcription and speech analytics
  - name: SMS and MMS
    description: Messaging
  - name: Number Validator
    description: Phone number validation
  - name: Link shortener
    description: Short link and click metrics
  - name: 2FA
    description: Two-factor authentication
  - name: 10DLC
    description: 10DLC Campaigns and Brands
  - name: API Keys
    description: API key management
  - name: Call webhooks
    description: Webhook configuration for call events
  - name: Call control
    description: Programmable Voice
  - name: Call streaming
    description: Real-time call audio streaming over WebSocket
  - name: Call recording
    description: Call recording
  - name: Sub-accounts
    description: Sub-account management
  - name: Voice campaigns
    description: Outbound voice campaigns
  - name: Wavix Embeddable
    description: WebRTC embeddable widget
paths:
  /v3/10dlc/brands/{brand_id}/vettings/appeals:
    get:
      tags:
        - 10DLC
      summary: List external vetting appeals
      description: >-
        Returns the external vetting appeals for the 10DLC Brand identified by
        `brand_id`.
      operationId: ten_dlc_brand_vetting_appeals_list
      parameters:
        - name: brand_id
          in: path
          description: The unique ID of the 10DLC Brand.
          required: true
          style: simple
          schema:
            type: string
            example: BMQFB7X
      responses:
        '200':
          description: Returns the list of external vetting appeals.
          headers: {}
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TenDLCBrandVettingAppeal'
                example:
                  - appeal_outcome:
                      vet_status: ACTIVE
                      vet_score: 80
                      feedback:
                        reasons:
                          - >-
                            Company size as reported by government or business
                            sources resulted in a score deduction: size range
                            6-10.
                    appeal_status: COMPLETE
                    appeal_status_update_date: '2024-08-15T08:42:31Z'
                    attachment_uuid_list: []
                    brand_id: BMQFB7X
                    category_list:
                      - LOW_SCORE
                    create_date: '2024-08-15T08:41:05'
                    evp_id: AEGIS
                    explanation: This is an API test
                    vetting_class: STANDARD
                    vetting_id: 48c0ffaa-4e51-4d44-3982-08dcb9856232
              examples:
                default:
                  value:
                    - appeal_outcome:
                        vet_status: ACTIVE
                        vet_score: 80
                        feedback:
                          reasons:
                            - >-
                              Company size as reported by government or business
                              sources resulted in a score deduction: size range
                              6-10.
                      appeal_status: COMPLETE
                      appeal_status_update_date: '2024-08-15T08:42:31Z'
                      attachment_uuid_list: []
                      brand_id: BMQFB7X
                      category_list:
                        - LOW_SCORE
                      create_date: '2024-08-15T08:41:05'
                      evp_id: AEGIS
                      explanation: This is an API test
                      vetting_class: STANDARD
                      vetting_id: 48c0ffaa-4e51-4d44-3982-08dcb9856232
        '403':
          description: Returns when the 10DLC feature is disabled for the account.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccountErrorResponse'
              examples:
                success:
                  summary: Successful response
                  value:
                    success: false
                    message: Request failed. The feature is disabled for the account.
        '404':
          description: Returns when the requested 10DLC resource does not exist.
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/RecordNotFoundErrorResponse'
                  - example:
                      success: false
                      message: Request failed. The Brand is not found.
              examples:
                success:
                  summary: Successful response
                  value:
                    success: false
                    message: Request failed. The Brand is not found.
      deprecated: false
      security:
        - bearerAuth:
            - campaigns:read
components:
  schemas:
    TenDLCBrandVettingAppeal:
      title: TenDLCBrandVettingAppeal
      description: >-
        Represents an appeal against a 10DLC brand vetting result. An appeal
        asks the vetting provider to reconsider the assigned score.
      required:
        - appeal_outcome
        - appeal_status
        - appeal_status_update_date
        - attachment_uuid_list
        - brand_id
        - category_list
        - create_date
        - explanation
        - evp_id
        - vetting_class
        - vetting_id
      type: object
      additionalProperties: false
      properties:
        appeal_outcome:
          allOf:
            - $ref: '#/components/schemas/TenDLCBrandVettingAppealOutcome'
            - description: >-
                Outcome of the appeal, including the revised vetting status and
                score.
              example:
                vet_status: ACTIVE
                vet_score: 80
                feedback:
                  reasons:
                    - >-
                      Company size as reported by government or business sources
                      resulted in a score deduction: size range 6-10.
        appeal_status:
          type: string
          description: Current status of the appeal, such as `PENDING` or `COMPLETE`.
          example: COMPLETE
        appeal_status_update_date:
          type: string
          description: >-
            Timestamp when the appeal status was last updated, in ISO 8601
            format.
          format: date-time
          example: '2024-08-15T08:42:31Z'
        attachment_uuid_list:
          type: array
          items:
            type: string
          description: UUIDs of the evidence files submitted in support of the appeal.
          example: []
        brand_id:
          type: string
          description: Unique identifier of the Brand the appeal is associated with.
          example: BMQFB7X
        category_list:
          type: array
          items:
            type: string
          description: Categories that classify the appeal, such as `LOW_SCORE`.
          example:
            - LOW_SCORE
        create_date:
          type: string
          description: Timestamp when the appeal was created, in ISO 8601 format.
          example: '2024-08-15T08:41:05'
        explanation:
          type: string
          description: Justification provided for the appeal.
          example: Please review the Brand score
        evp_id:
          type: string
          description: >-
            Code identifying the external vetting provider that handled the
            appeal.
          example: AEGIS
        vetting_class:
          type: string
          description: >-
            Class of the vetting being appealed, such as `STANDARD` or
            `ENHANCED`.
          example: STANDARD
        vetting_id:
          type: string
          description: Unique identifier of the vetting request being appealed.
          example: 48c0ffaa-4e51-4d44-3982-08dcb9856232
      example:
        appeal_outcome:
          vet_status: ACTIVE
          vet_score: 80
          feedback:
            reasons:
              - >-
                Company size as reported by government or business sources
                resulted in a score deduction: size range 6-10.
        appeal_status: COMPLETE
        appeal_status_update_date: '2024-08-15T08:42:31Z'
        attachment_uuid_list: []
        brand_id: BMQFB7X
        category_list:
          - LOW_SCORE
        create_date: '2024-08-15T08:41:05'
        evp_id: AEGIS
        explanation: Please review the Brand score
        vetting_class: STANDARD
        vetting_id: 48c0ffaa-4e51-4d44-3982-08dcb9856232
    AccountErrorResponse:
      title: AccountErrorResponse
      required:
        - success
        - message
      type: object
      properties:
        success:
          type: boolean
          description: Indicates whether the request was successful
          example: false
        message:
          type: string
          description: Human-readable error description
          example: Request failed. The feature is disabled for the account.
      description: The feature is disabled for the account.
    RecordNotFoundErrorResponse:
      title: RecordNotFoundErrorResponse
      required:
        - success
        - message
      type: object
      properties:
        success:
          type: boolean
          description: >-
            Indicates whether the request was successful. Always `false` for
            this error.
          example: false
        message:
          type: string
          description: Human-readable error description
          example: Record not found
      example:
        success: false
        message: Record not found
    TenDLCBrandVettingAppealOutcome:
      title: TenDLCBrandVettingAppealOutcome
      required:
        - vet_status
        - vet_score
        - feedback
      type: object
      additionalProperties: false
      properties:
        vet_status:
          type: string
          description: Current status of the Brand vetting
          example: ACTIVE
        vet_score:
          type: integer
          description: The Brand vetting score
          format: int32
          example: 80
        feedback:
          allOf:
            - $ref: '#/components/schemas/TenDLCBrandVettingAppealOutcomeReason'
            - description: The feedback provided by the external vetting provider
      example:
        vet_status: ACTIVE
        vet_score: 80
        feedback:
          reasons:
            - >-
              Company size as reported by government or business sources
              resulted in a score deduction: size range 6-10.
    TenDLCBrandVettingAppealOutcomeReason:
      title: TenDLCBrandVettingAppealOutcomeReason
      required:
        - reasons
      type: object
      additionalProperties: false
      properties:
        reasons:
          type: array
          items:
            type: string
          description: An list of human-readable explanations returned by TCR
          example:
            - >-
              Company size as reported by government or business sources
              resulted in a score deduction: size range 6-10.
      example:
        reasons:
          - >-
            Company size as reported by government or business sources resulted
            in a score deduction: size range 6-10.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >
        Wavix API key. Pass as `Authorization: Bearer <api_key>`. Keys support
        per-resource scopes (none / read / write). See [Restricted keys and
        scopes](https://docs.wavix.com/api-reference/authentication#restricted-keys-and-scopes).

````