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

# Fill Medical forms

> This if the HR wants to fill the Medical forms themselves.



## OpenAPI

````yaml /medical-api-reference/openapi.json post /medical-forms/fill
openapi: 3.0.1
info:
  title: OpenAPI For SME Medical Insurance
  description: API's that you need to use to request insurance(s) for your clients
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://production.yasmina.ai/api/v1/medical
  - url: https://sandbox.yasmina.ai/api/v1/medical
security:
  - bearerAuth: []
paths:
  /medical-forms/fill:
    post:
      tags:
        - Medical Forms
      summary: Fill Medical forms
      description: This if the HR wants to fill the Medical forms themselves.
      responses:
        '204':
          description: Forms dispatched successfully
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                example: {}
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  responses:
    Unauthorized:
      description: Unauthorized
      content:
        application/json:
          schema:
            type: object
            properties:
              code:
                type: string
                example: '40101'
              message:
                type: string
                example: Unauthenticated
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````