CertifID Underwriter API

The Underwriter API from CertifID — 1 operation(s) for underwriter.

OpenAPI Specification

certifid-underwriter-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: CertifID V2 Underwriter API
  description: Access to CertifID data and functions for 3rd Party Integrations
  version: v1
security:
- oauth2: []
tags:
- name: Underwriter
paths:
  /api/v1/Account/{id}/Underwriter:
    get:
      tags:
      - Underwriter
      summary: Retrieves a list of underwriters associated to the location
      parameters:
      - name: id
        in: path
        description: The ID of the specific location to retrieve the title underwriters for.
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CertifID.V2.PublicAPI.ViewModels.Underwriters.UnderwriterViewModel'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CertifID.V2.PublicAPI.ViewModels.Underwriters.UnderwriterViewModel'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CertifID.V2.PublicAPI.ViewModels.Underwriters.UnderwriterViewModel'
        '400':
          description: Bad Request
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - oauth2:
        - CertifIDUser
components:
  schemas:
    CertifID.V2.PublicAPI.ViewModels.Underwriters.UnderwriterViewModel:
      type: object
      properties:
        id:
          type: string
          description: The unique identifier of the underwriter.
        name:
          type: string
          description: The (display) name of the underwriter.
          example: Integrity National Title Insurance Co
      additionalProperties: false
      description: A title underwriter.
    Microsoft.AspNetCore.Mvc.ProblemDetails:
      type: object
      properties:
        type:
          type:
          - string
          - 'null'
        title:
          type:
          - string
          - 'null'
        status:
          type:
          - integer
          - 'null'
          format: int32
        detail:
          type:
          - string
          - 'null'
        instance:
          type:
          - string
          - 'null'
      additionalProperties: {}
  securitySchemes:
    oauth2:
      type: oauth2
      flows:
        authorizationCode:
          authorizationUrl: https://auth.certifid.com/authorize?audience=https://api.certifid.com&connection=CertifID-Users-DB
          tokenUrl: https://auth.certifid.com/oauth/token
          scopes: {}