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

# Download the declaration form

> The health declaration as a printable PDF, so a company can hand it to the employees who have to fill it in. Pass a `company_id` and the file carries one page per enrolled employee, with their name, id and package already filled in; leave it out for a single blank form.



## OpenAPI

````yaml /medical-api-reference/openapi.json get /medical-forms/download
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/download:
    get:
      tags:
        - Medical Forms
      summary: Download the declaration form
      description: >-
        The health declaration as a printable PDF, so a company can hand it to
        the employees who have to fill it in. Pass a `company_id` and the file
        carries one page per enrolled employee, with their name, id and package
        already filled in; leave it out for a single blank form.
      parameters:
        - name: company_id
          in: query
          required: false
          description: Produce a page per employee of this company.
          schema:
            type: integer
      responses:
        '200':
          description: The form, as a PDF attachment
          content:
            application/pdf:
              schema:
                type: string
                format: binary
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````