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

# Cancellation status

> Get an updated cancellation status on the policy



## OpenAPI

````yaml /property-api-reference/openapi.json get /policies/{propertyPolicy}/cancellation-status
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}/cancellation-status:
    get:
      tags:
        - Policies
      summary: Cancellation status
      description: Get an updated cancellation status on the policy
      parameters:
        - required: true
          name: propertyPolicy
          in: path
          schema:
            type: integer
      responses:
        '200':
          description: Success
          content:
            application/json:
              example:
                status: active
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````