Noyo Issue Persons API

The Issue Persons API from Noyo — 1 operation(s) for issue persons.

Operations 1

GET /ui/v1/issue_persons/{id} Get Issue Person #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/noyo-issue-persons-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

noyo-issue-persons-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: APIs to manage and consume information about Carriers
  title: Noyo Carrier Carrier Mapped Field Issue Persons API
  version: 1.0.0
servers: []
tags:
- name: Issue Persons
paths:
  /ui/v1/issue_persons/{id}:
    get:
      description: Get a specific IssuePerson by its ID.
      operationId: getIssuePersonUI
      parameters:
      - description: The unique identifier for the IssuePerson.
        in: path
        name: id
        required: true
        schema:
          format: uuid
          type: string
      responses:
        '200':
          content:
            application/json:
              example:
                created: 1697380200
                date_of_birth: '1990-05-15'
                first_name: Jane
                group_id: 436fb487-bb75-42d4-9651-7b1471a8940e
                id: dd9a1813-34f7-4c7e-86bc-f041f2cbd9a1
                last_name: Doe
                middle_name: null
                modified: 1697380200
                organization_id: d61fa455-adf4-4dc4-8c57-6d779ba9475e
                ssn: null
                suffix: null
                version: ea38e798-cd61-4fa2-b485-d1c5b87a61af
              schema:
                $ref: '#/components/schemas/IssuePersonUIResult'
          description: Successful Response - Returns the IssuePerson details.
        '404':
          description: IssuePerson not found.
      summary: Get Issue Person
      tags:
      - Issue Persons
components:
  schemas:
    IssuePersonUIResult:
      properties:
        created:
          description: The date the record was created
          type: integer
        date_of_birth:
          description: Date of birth
          format: date
          readOnly: true
          type:
          - string
          - 'null'
        first_name:
          description: First name
          readOnly: true
          type:
          - string
          - 'null'
        group_id:
          description: The unique identifier of the group associated with this issue person
          format: uuid
          readOnly: true
          type: string
        id:
          description: Unique identifier of the record in Noyo
          format: uuid
          type: string
        last_name:
          description: Last name
          readOnly: true
          type:
          - string
          - 'null'
        middle_name:
          description: Middle name
          readOnly: true
          type:
          - string
          - 'null'
        modified:
          description: The date the record was last updated
          type: integer
        organization_id:
          description: The unique identifier of the organization associated with this issue person
          format: uuid
          readOnly: true
          type: string
        ssn:
          description: Social Security Number
          readOnly: true
          type:
          - string
          - 'null'
        suffix:
          description: Name suffix
          readOnly: true
          type:
          - string
          - 'null'
        version:
          description: Current version of the record
          format: uuid
          type: string
      required:
      - created
      - group_id
      - id
      - modified
      - organization_id
      - version
      type: object
      x-field_order: []