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

# Issue claim

> Issue a claim to your policy



## OpenAPI

````yaml /property-api-reference/openapi.json post /policies/{propertyPolicy}/claims
openapi: 3.0.1
info:
  title: OpenAPI For Property Insurance
  description: APIs for requesting and managing policies for your clients
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://sandbox.yasmina.ai/api/v1/property
  - url: https://production.yasmina.ai/api/v1/property
security:
  - bearerAuth: []
paths:
  /policies/{propertyPolicy}/claims:
    post:
      tags:
        - Claims
      summary: Issue claim
      description: Issue a claim to your policy
      parameters:
        - required: true
          name: propertyPolicy
          in: path
          schema:
            type: integer
      requestBody:
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                requested_amount:
                  type: number
                  description: Value in SAR
                  example: 1000
                description:
                  description: All details about what happened
                  example: ''
                  type: string
                supporting_document:
                  format: binary
                  type: string
                  description: Could be used for uploading the invoice
                  example: ''
      responses:
        '201':
          description: Created
          content:
            application/json:
              schema:
                type: object
                properties:
                  description:
                    type: string
                  requested_amount:
                    type: string
                  claim_status:
                    type: integer
                  policy_id:
                    type: integer
                  updated_at:
                    type: string
                  created_at:
                    type: string
                  id:
                    type: integer
                  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

````