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

# testAiEmailPrompt



## OpenAPI

````yaml /mintlify/docs/openapi.yaml post /testAiEmailPrompt
openapi: 3.0.1
info:
  title: EzzyRest API
  version: 1.0.0
servers:
  - url: https://app.ezzydoc.com/EzzyService.svc/Rest/
    description: Production Server
security: []
paths:
  /testAiEmailPrompt:
    post:
      tags:
        - EzzyRest
      summary: testAiEmailPrompt
      operationId: testAiEmailPrompt
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AiEmailPromptTestRequest'
          text/json:
            schema:
              $ref: '#/components/schemas/AiEmailPromptTestRequest'
          application/*+json:
            schema:
              $ref: '#/components/schemas/AiEmailPromptTestRequest'
      responses:
        '200':
          description: Success
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/AiEmailPromptTestSS'
            application/json:
              schema:
                $ref: '#/components/schemas/AiEmailPromptTestSS'
            text/json:
              schema:
                $ref: '#/components/schemas/AiEmailPromptTestSS'
        '400':
          description: Bad Request
        '500':
          description: Internal Server Error
      security:
        - BearerAuth: []
components:
  schemas:
    AiEmailPromptTestRequest:
      type: object
      properties:
        unresolved:
          type: string
    AiEmailPromptTestSS:
      type: object
      properties:
        unresolved:
          type: string
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````