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

# Submit a public contact request to support

> Submits a public contact request to Leadping support, capturing sender details and message content without requiring authentication.



## OpenAPI

````yaml /openapi.json post /contact
openapi: 3.0.4
info:
  title: Leadping API
  description: >-
    Leadping API for lead intake, messaging, calling, automations, billing,
    business settings, and compliant lead communication workflows.
  license:
    name: MIT
    url: https://opensource.org/licenses/MIT
  version: v1
servers:
  - url: https://api.leadping.ai
    description: Production
security: []
tags:
  - name: Analytics
  - name: Automations
  - name: Contact
  - name: Conversations
  - name: Dispositions
  - name: Feedback
  - name: Leads
  - name: LeadStatuses
  - name: Notifications
  - name: OutboundDelivery
  - name: Sources
  - name: Suppressions
  - name: Tags
  - name: Users
  - name: Calls
  - name: PhoneNumbers
  - name: Sms
  - name: Telephony
  - name: UserDataExports
  - name: CallEvents
  - name: Events
  - name: SmsEvents
  - name: Businesses
  - name: PaymentMethods
  - name: Transactions
  - name: Usage
  - name: Wallets
paths:
  /contact:
    post:
      tags:
        - Contact
      summary: Submit a public contact request to support
      description: >-
        Submits a public contact request to Leadping support, capturing sender
        details and message content without requiring authentication.
      operationId: Contact_Submit
      requestBody:
        description: The contact form data to submit.
        content:
          application/json:
            schema:
              allOf:
                - $ref: '#/components/schemas/ContactRequest'
              description: >-
                Request schema for the Leadping API contact form request,
                including the fields clients can send.
          application/*+json:
            schema:
              allOf:
                - $ref: '#/components/schemas/ContactRequest'
              description: >-
                Request schema for the Leadping API contact form request,
                including the fields clients can send.
        required: true
      responses:
        '200':
          description: Contact form was successfully submitted.
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/ContactResponse'
                description: >-
                  Response schema for the Leadping API contact form response
                  returned to authenticated clients.
        '400':
          description: The request was invalid or malformed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
components:
  schemas:
    ContactRequest:
      type: object
      properties:
        name:
          type: string
          description: Display name for this contact form request in the Leadping API.
          nullable: true
        email:
          type: string
          description: >-
            Email address for the person represented by this contact form
            request.
        message:
          type: string
          description: >-
            Message text supplied by the user or returned by the Leadping API
            for this contact form request.
        token:
          type: string
          description: Invitation or workflow token used to authorize this request.
      description: >-
        Request schema for the Leadping API contact form request, including the
        fields clients can send.
    ContactResponse:
      type: object
      properties:
        message:
          type: string
          description: >-
            Message text supplied by the user or returned by the Leadping API
            for this contact form response.
      description: >-
        Response schema for the Leadping API contact form response returned to
        authenticated clients.
    ProblemDetails:
      type: object
      properties:
        type:
          type: string
          description: URI reference that identifies the problem type.
          nullable: true
        title:
          type: string
          description: Short, human-readable summary of the problem.
          nullable: true
        status:
          pattern: ^-?(?:0|[1-9]\d*)$
          description: HTTP status code returned for the problem.
          format: int32
          nullable: true
        detail:
          type: string
          description: >-
            Human-readable explanation specific to this occurrence of the
            problem.
          nullable: true
        instance:
          type: string
          description: >-
            URI reference that identifies this specific occurrence of the
            problem.
          nullable: true

````