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

# Send Message

> Send us a message. This endpoint allows users to send messages without authentication.

Args:
    message_data (SendMessageSchema): The message details including first name, email, and brief description.
    reporter_user (User | None): The user submitting the report.

Returns:
    dict: Confirmation message.



## OpenAPI

````yaml https://dev-api.cattix.com/openapi.json post /api/v1/bug-reports/send-message
openapi: 3.1.0
info:
  title: CATTIX API
  description: CATTIX Backend API
  version: 0.107.0
servers:
  - url: http://localhost:8000
    description: Local
  - url: https://dev-api.cattix.com
    description: Development
  - url: https://staging-api.cattix.com
    description: Staging
  - url: https://api.cattix.com
    description: Production
security: []
paths:
  /api/v1/bug-reports/send-message:
    post:
      tags:
        - Bug Reports
      summary: Send Message
      description: >-
        Send us a message. This endpoint allows users to send messages without
        authentication.


        Args:
            message_data (SendMessageSchema): The message details including first name, email, and brief description.
            reporter_user (User | None): The user submitting the report.

        Returns:
            dict: Confirmation message.
      operationId: send_message_api_v1_bug_reports_send_message_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SendMessageSchema'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MessageSchema'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - OAuth2PasswordBearer: []
components:
  schemas:
    SendMessageSchema:
      properties:
        first_name:
          type: string
          maxLength: 255
          title: First name
        email:
          type: string
          maxLength: 255
          title: Your email address
        brief_description:
          type: string
          title: Brief description of your message
      type: object
      required:
        - first_name
        - email
        - brief_description
      title: SendMessageSchema
      description: The schema for sending a message.
    MessageSchema:
      properties:
        first_name:
          type: string
          maxLength: 255
          title: First name
        email:
          type: string
          maxLength: 255
          title: Your email address
        brief_description:
          type: string
          title: Brief description of your message
        user:
          anyOf:
            - $ref: '#/components/schemas/UserSchema'
            - type: 'null'
        id:
          type: integer
          title: The ID of the message
        date_added:
          type: string
          format: date-time
          title: The date the message was added
        date_updated:
          type: string
          format: date-time
          title: The date the message was updated
      type: object
      required:
        - first_name
        - email
        - brief_description
        - id
        - date_added
        - date_updated
      title: MessageSchema
      description: The schema for a message.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    UserSchema:
      properties:
        id:
          type: integer
          title: Id
        email:
          type: string
          format: email
          title: Email
        profile:
          $ref: '#/components/schemas/BasicProfileSchema'
        is_google_recaptcha_response_valid:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Whether the Google reCAPTCHA response is valid
      type: object
      required:
        - id
        - email
        - profile
      title: UserSchema
      description: The schema for a user.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
    BasicProfileSchema:
      properties:
        first_name:
          type: string
          title: First Name
        last_name:
          type: string
          title: Last Name
        phone_number:
          anyOf:
            - type: string
              maxLength: 15
              minLength: 9
            - type: 'null'
          title: The phone number of the user
      type: object
      required:
        - first_name
        - last_name
      title: BasicProfileSchema
      description: The base schema for a profile.
  securitySchemes:
    OAuth2PasswordBearer:
      type: oauth2
      flows:
        password:
          scopes: {}
          tokenUrl: api/v1/users/authorization/token

````