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

# Payment link

> To generate a payment link for check out page



## OpenAPI

````yaml /medical-api-reference/openapi.json get /payment-link
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:
  /payment-link:
    get:
      tags:
        - Payment
      summary: Payment link
      description: To generate a payment link for check out page
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
                example:
                  payment: >-
                    https://production.yasmina.ai/checkoutPage?hash=eyJpdiI6ImZZVU1pN2NsbGxUOEtjNGlkQzVJanc9PSIsInZhbHVlIjoiV2Z6S2ljczQ4b3JmREFnNkVPa1phL0xZSTFGZ2dQRXZhcFo1K0pSaEE2ND0iLCJtYWMiOiJjNGRmMWM3ODQyZGEyZTA2M2JlOWYzZTA3NTc2NDcyNzk3M2E2ZGVhOWE3YjNjODQxNWU1MjU3ODA3ZDc3MjMzIiwidGFnIjoiIn0=
          description: Success
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````