Assurant · Capability

Assurant APEX Embedded Insurance API — Claims

Assurant APEX Embedded Insurance API — Claims. 2 operations. Lead operation: File a claim. Self-contained Naftiko capability covering one Assurant business surface.

Run with Naftiko AssurantClaims

What You Can Do

POST
Fileclaim — File a claim
/v1/claims
GET
Getclaim — Get claim status
/v1/claims/{claimid}

MCP Tools

file-claim

File a claim

get-claim-status

Get claim status

read-only idempotent

Capability Spec

apex-insurance-claims.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Assurant APEX Embedded Insurance API — Claims
  description: 'Assurant APEX Embedded Insurance API — Claims. 2 operations. Lead operation: File a claim. Self-contained
    Naftiko capability covering one Assurant business surface.'
  tags:
  - Assurant
  - Claims
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ASSURANT_API_KEY: ASSURANT_API_KEY
capability:
  consumes:
  - type: http
    namespace: apex-insurance-claims
    baseUri: https://api-prod.portal.assurant.com
    description: Assurant APEX Embedded Insurance API — Claims business capability. Self-contained, no shared references.
    resources:
    - name: claims
      path: /claims
      operations:
      - name: fileclaim
        method: POST
        description: File a claim
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: claims-claimId
      path: /claims/{claimId}
      operations:
      - name: getclaim
        method: GET
        description: Get claim status
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: claimId
          in: path
          type: string
          required: true
    authentication:
      type: apikey
      key: X-API-Key
      value: '{{env.ASSURANT_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: apex-insurance-claims-rest
    port: 8080
    description: REST adapter for Assurant APEX Embedded Insurance API — Claims. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/claims
      name: claims
      description: REST surface for claims.
      operations:
      - method: POST
        name: fileclaim
        description: File a claim
        call: apex-insurance-claims.fileclaim
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/claims/{claimid}
      name: claims-claimid
      description: REST surface for claims-claimId.
      operations:
      - method: GET
        name: getclaim
        description: Get claim status
        call: apex-insurance-claims.getclaim
        with:
          claimId: rest.claimId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: apex-insurance-claims-mcp
    port: 9090
    transport: http
    description: MCP adapter for Assurant APEX Embedded Insurance API — Claims. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: file-claim
      description: File a claim
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: apex-insurance-claims.fileclaim
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-claim-status
      description: Get claim status
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: apex-insurance-claims.getclaim
      with:
        claimId: tools.claimId
      outputParameters:
      - type: object
        mapping: $.