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

# Qualify a 10DLC Brand for a use case

> Returns the qualification results for a 10DLC Brand use case. Includes MNO-specific attributes, restrictions, and fees.



## OpenAPI

````yaml https://wavix.github.io/wavix-openapi/wavix-api.yaml get /v3/10dlc/brands/{brand_id}/usecases/{use_case}
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}/usecases/{use_case}:
    get:
      tags:
        - 10DLC
      summary: Qualify a 10DLC Brand for a use case
      description: >-
        Returns the qualification results for a 10DLC Brand use case. Includes
        MNO-specific attributes, restrictions, and fees.
      operationId: ten_dlc_brand_usecase_qualify
      parameters:
        - name: brand_id
          in: path
          description: The unique ID of the 10DLC Brand.
          required: true
          style: simple
          schema:
            type: string
            example: BMQFB7X
        - name: use_case
          in: path
          description: Name of the use case to qualify the Brand for.
          required: true
          style: simple
          schema:
            type: string
            enum:
              - AGENTS_FRANCHISES
              - CARRIER_EXEMPT
              - CHARITY
              - EMERGENCY
              - K12_EDUCATION
              - LOW_VOLUME
              - M2M
              - MIXED
              - POLITICAL
              - PROXY
              - SOCIAL
              - SOLE_PROPRIETOR
              - SWEEPSTAKE
              - TRIAL
              - UCAAS_HIGH
              - UCAAS_LOW
              - 2FA
              - ACCOUNT_NOTIFICATION
              - CUSTOMER_CARE
              - DELIVERY_NOTIFICATION
              - FRAUD_ALERT
              - HIGHER_EDUCATION
              - MARKETING
              - POLLING_VOTING
              - PUBLIC_SERVICE_ANNOUNCEMENT
              - SECURITY_ALERT
            example: 2FA
      responses:
        '200':
          description: Returns the use case qualification results for the Brand.
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/TenDLCBrandQualificationResult'
                  - example:
                      mno_metadata:
                        - att_mms_tpm: null
                          att_msg_class: null
                          att_sms_tpm: null
                          att_tpm_scope: null
                          help_required: true
                          min_msg_samples: 1
                          mno: T-Mobile
                          mno_qualify: true
                          mno_review: false
                          mno_support: true
                          no_embedded_links: false
                          no_embedded_phone: false
                          optin_required: true
                          optout_required: false
                          tmobile_brand_dcap: 2000
                          tmobile_brand_tier: LOW
                      monthly_fee: 10
                      usecase: 2FA
              examples:
                default:
                  value:
                    mno_metadata:
                      - att_mms_tpm: null
                        att_msg_class: null
                        att_sms_tpm: null
                        att_tpm_scope: null
                        help_required: true
                        min_msg_samples: 1
                        mno: T-Mobile
                        mno_qualify: true
                        mno_review: false
                        mno_support: true
                        no_embedded_links: false
                        no_embedded_phone: false
                        optin_required: true
                        optout_required: false
                        tmobile_brand_dcap: 2000
                        tmobile_brand_tier: LOW
                    monthly_fee: 10
                    usecase: 2FA
        '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.
        '422':
          description: >-
            Returns when the Brand is still being scored or has not yet been
            submitted to TCR.
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/RecordNotFoundErrorResponse'
                  - example:
                      success: false
                      message: >-
                        The Brand is in a 'pending' state waiting for the brand
                        scoring task be to completed or the Brand has not been
                        submitted to TCR yet
              examples:
                success:
                  summary: Successful response
                  value:
                    success: false
                    message: >-
                      The Brand is in a 'pending' state waiting for the brand
                      scoring task be to completed or the Brand has not been
                      submitted to TCR yet
      deprecated: false
      security:
        - bearerAuth:
            - campaigns:read
components:
  schemas:
    TenDLCBrandQualificationResult:
      title: TenDLCBrandQualificationResult
      required:
        - mno_metadata
        - monthly_fee
        - usecase
      type: object
      additionalProperties: false
      properties:
        mno_metadata:
          type: array
          items:
            $ref: '#/components/schemas/TenDLCMNOMetadata'
          description: >-
            An array MNO-specific attributes (e.g. AT&T message class) for every
            MNO the Brand is qualified to run a Campaign with the specified use
            case.
        monthly_fee:
          type: number
          description: Monthly fee associated with any Campaign with this use case
          example: 10
        usecase:
          type: string
          description: The use case name
          example: 2FA
      example:
        mno_metadata:
          - att_mms_tpm: null
            att_msg_class: null
            att_sms_tpm: null
            att_tpm_scope: null
            help_required: true
            min_msg_samples: 1
            mno: T-Mobile
            mno_qualify: true
            mno_review: false
            mno_support: true
            no_embedded_links: false
            no_embedded_phone: false
            optin_required: true
            optout_required: false
            tmobile_brand_dcap: 2000
            tmobile_brand_tier: LOW
        monthly_fee: 10
        usecase: 2FA
    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
    TenDLCMNOMetadata:
      title: TenDLCMNOMetadata
      required:
        - att_mms_tpm
        - att_msg_class
        - att_sms_tpm
        - att_tpm_scope
        - help_required
        - optin_required
        - optout_required
        - min_msg_samples
        - mno
        - mno_qualify
        - mno_review
        - mno_support
        - no_embedded_links
        - no_embedded_phone
        - tmobile_brand_dcap
        - tmobile_brand_tier
      type: object
      additionalProperties: false
      description: >-
        Represents per-MNO 10DLC requirements and throughput limits that apply
        to a campaign use case.
      properties:
        att_mms_tpm:
          type:
            - integer
            - 'null'
          description: MMS throughput per minute allowed on the AT&T network.
          format: int32
        att_msg_class:
          type:
            - string
            - 'null'
          description: Message class assigned by AT&T.
        att_sms_tpm:
          type:
            - integer
            - 'null'
          description: SMS throughput per minute allowed on the AT&T network.
          format: int32
        att_tpm_scope:
          type:
            - string
            - 'null'
          description: Scope of the AT&T throughput-per-minute allocation.
          format: int32
        help_required:
          type: boolean
          description: >-
            Indicates whether help keywords and an acknowledgement are mandatory
            for the use case.
          example: true
        optin_required:
          type: boolean
          description: Indicates whether an opt-in mechanism is mandatory for the use case.
          example: true
        optout_required:
          type: boolean
          description: >-
            Indicates whether an opt-out mechanism is mandatory for the use
            case.
          example: false
        min_msg_samples:
          type: integer
          description: Minimum number of message samples the MNO requires for the use case.
          format: int32
          example: 1
        mno:
          type: string
          description: >-
            Name of the mobile network operator (MNO) these requirements apply
            to.
          example: T-Mobile
        mno_qualify:
          type: boolean
          description: >-
            Indicates whether the Brand qualifies with the MNO for the selected
            use case.
          example: true
        mno_review:
          type: boolean
          description: >-
            Indicates whether the MNO requires a post-approval review of the use
            case.
          example: false
        mno_support:
          type: boolean
          description: Indicates whether the MNO supports the use case.
          example: true
        no_embedded_links:
          type: boolean
          description: >-
            Indicates whether embedded links are prohibited in message content
            for the use case.
          example: false
        no_embedded_phone:
          type: boolean
          description: >-
            Indicates whether embedded phone numbers are prohibited in message
            content for the use case.
          example: false
        tmobile_brand_dcap:
          type:
            - integer
            - 'null'
          description: Daily message cap allowed on the T-Mobile network.
          format: int32
          example: 2000
        tmobile_brand_tier:
          type:
            - string
            - 'null'
          description: Brand tier assigned on the T-Mobile network, such as `LOW`.
          example: LOW
      example:
        att_mms_tpm: null
        att_msg_class: null
        att_sms_tpm: null
        att_tpm_scope: null
        help_required: true
        min_msg_samples: 1
        mno: T-Mobile
        mno_qualify: true
        mno_review: false
        mno_support: true
        no_embedded_links: false
        no_embedded_phone: false
        optin_required: true
        optout_required: false
        tmobile_brand_dcap: 2000
        tmobile_brand_tier: LOW
  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).

````