Tint Questionnaires API

Questionnaire definitions attached to policies.

OpenAPI Specification

tint-questionnaires-api-openapi.yml Raw ↑
openapi: 3.0.1
info:
  title: Tint Claims Questionnaires API
  description: Tint API v2 - the embedded protection / insurance-as-a-service infrastructure that powers Tint's Hermes platform. The REST API provides programmatic access to insurance products (programs) and plans, rated quotes, the full policy lifecycle (create, issue, endorse, report usage, cancel, void), claims handling (FNOL through settlement), Decision Engine decisions, Score Module scores, and questionnaires. Every request is authenticated with a Bearer API token; the same token determines whether the request is routed to the sandbox or production environment. Endpoint paths below are modeled from Tint's public documentation at https://docs.tint.ai; request/response schemas are configured per program via Tint's validation schema and are therefore not fully enumerated here.
  termsOfService: https://www.tint.ai
  contact:
    name: Tint
    url: https://www.tint.ai
  version: '2'
servers:
- url: https://api.tint.ai/v2
  description: Tint API v2 (sandbox vs production selected by API token)
security:
- bearerAuth: []
tags:
- name: Questionnaires
  description: Questionnaire definitions attached to policies.
paths:
  /policy/{policyId}/questionnaire/{slug}:
    get:
      operationId: getPolicyQuestionnaire
      tags:
      - Questionnaires
      summary: Retrieve a questionnaire definition attached to a policy.
      parameters:
      - name: policyId
        in: path
        required: true
        schema:
          type: string
      - name: slug
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Questionnaire definition.
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: 'API token passed as "Authorization: Bearer ${API_TOKEN}". The token determines whether the request is routed to the sandbox or production environment.'