> ## 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 contact request from a generated customer website.

> Delivers the inquiry to the generated website's provisioned support address, then redirects the visitor to the site's confirmation state.



## OpenAPI

````yaml /openapi.json post /contact/website
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/website:
    post:
      tags:
        - Contact
      summary: Submit a contact request from a generated customer website.
      description: >-
        Delivers the inquiry to the generated website's provisioned support
        address, then redirects the visitor to the site's confirmation state.
      operationId: Contact_SubmitWebsite
      requestBody:
        description: Honeypot field that must remain empty for legitimate submissions.
        content:
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                Name:
                  maxLength: 200
                  type: string
                Email:
                  maxLength: 320
                  type: string
                Phone:
                  maxLength: 50
                  type: string
                Message:
                  maxLength: 10000
                  type: string
                SmsConsent:
                  type: boolean
                ReturnUrl:
                  maxLength: 2048
                  type: string
                CompanyWebsite:
                  maxLength: 500
                  type: string
        required: true
      responses:
        '303':
          description: See Other
        '400':
          description: Bad Request
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
components:
  schemas:
    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
        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

````