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

# Submit claim

> Submit a Life S&P claim (death / critical illness / disability).



## OpenAPI

````yaml /life-snp/openapi.json post /policies/{policyId}/claims
openapi: 3.0.1
info:
  title: OpenAPI For Life Savings & Protection (Bank)
  description: >-
    APIs used by a bank channel to quote, issue, cancel, and claim on Life
    Savings & Protection policies.
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://sandbox.yasmina.ai/api/v1/life-snp
  - url: https://production.yasmina.ai/api/v1/life-snp
security:
  - bearerAuth: []
paths:
  /policies/{policyId}/claims:
    post:
      tags:
        - Claims
      summary: Submit claim
      description: Submit a Life S&P claim (death / critical illness / disability).
      parameters:
        - in: path
          name: policyId
          schema:
            type: integer
          required: true
      requestBody:
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                claim_type:
                  type: string
                  enum:
                    - death
                    - critical_illness
                    - total_permanent_disability
                event_date:
                  type: string
                  format: date
                requested_amount:
                  type: number
                  description: SAR (if applicable)
                  example: 500000
                description:
                  type: string
                  description: Details of the claim event.
                supporting_document:
                  type: string
                  format: binary
                  description: Upload relevant claim evidence (e.g., medical report).
              required:
                - claim_type
                - event_date
      responses:
        '201':
          description: Created
          content:
            application/json:
              schema:
                type: object
                properties:
                  claim_id:
                    type: integer
                  claim_type:
                    type: string
                  requested_amount:
                    type: number
                  claim_status:
                    type: string
                  policy_id:
                    type: integer
                  created_at:
                    type: string
                  updated_at:
                    type: string
                  supporting_document:
                    type: string
        '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

````