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

# createSupportticket



## OpenAPI

````yaml post /createSupportticket
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:
  /createSupportticket:
    post:
      tags:
        - EzzyRest
      summary: createSupportticket
      operationId: createSupportticket
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SupportTicketBase'
          text/json:
            schema:
              $ref: '#/components/schemas/SupportTicketBase'
          application/*+json:
            schema:
              $ref: '#/components/schemas/SupportTicketBase'
      responses:
        '200':
          description: Success
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SupportTicketSS'
            application/json:
              schema:
                $ref: '#/components/schemas/SupportTicketSS'
            text/json:
              schema:
                $ref: '#/components/schemas/SupportTicketSS'
        '400':
          description: Bad Request
        '500':
          description: Internal Server Error
      security:
        - BearerAuth: []
components:
  schemas:
    SupportTicketBase:
      type: object
      properties:
        ticket_id:
          type: string
        description:
          type: string
        user_email:
          type: string
        pictures:
          type: array
          items:
            $ref: '#/components/schemas/PictureFileSS'
    SupportTicketSS:
      type: object
      properties:
        service_status:
          $ref: '#/components/schemas/Servicestatus'
        support_ticket:
          $ref: '#/components/schemas/SupportTicket'
    PictureFileSS:
      type: object
      properties:
        PictureName:
          type: string
        PictureStream:
          type: string
          format: byte
        service_status:
          $ref: '#/components/schemas/Servicestatus'
    Servicestatus:
      type: object
      properties:
        invoice_id:
          type: integer
        message:
          type: string
        status:
          type: integer
          enum:
            - 0
            - 1
            - 2
            - 3
          x-enumNames:
            - OK
            - FAILED
            - NO_MORE_INVOICES
            - NOT_PERMITTED
    SupportTicket:
      type: object
      properties:
        create_time:
          type: string
          format: date-time
        id:
          type: integer
        userid:
          type: string
        message_id:
          type: string
        subject:
          type: string
        ticket_id:
          type: string
        description:
          type: string
        user_email:
          type: string
        pictures:
          type: array
          items:
            $ref: '#/components/schemas/PictureFileSS'
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````