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

# List policies

> List Life S&P policies created via the bank channel.



## OpenAPI

````yaml /life-snp/openapi.json get /policies
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:
    get:
      tags:
        - Policies
      summary: List policies
      description: List Life S&P policies created via the bank channel.
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Policy'
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  schemas:
    Policy:
      type: object
      properties:
        id:
          type: integer
        client_id:
          type: string
        provider_policy_id:
          type: integer
        provider_policy:
          type: string
        start_date:
          type: string
        end_date:
          type: string
        policy_term_years:
          type: integer
        sum_assured:
          type: number
        premium_amount:
          type: number
        premium_frequency:
          type: string
        approval_status:
          type: integer
        order_status:
          type: integer
        status:
          type: string
          example: active
        beneficiaries:
          type: array
          items:
            type: object
            properties:
              name:
                type: string
              national_id:
                type: string
              relationship:
                type: string
              share_percentage:
                type: number
        iban_masked:
          type: string
          example: SA03*****************519
        is_claimed:
          type: boolean
        canceled_at:
          type: string
          nullable: true
        invoice:
          type: string
        cancellation_document:
          type: string
        meta_data:
          type: object
        created_at:
          type: string
        updated_at:
          type: string
  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

````