Factset · Capability

Factset IRN API v1 — Contact Types

Factset IRN API v1 — Contact Types. 4 operations. Lead operation: Factset Get list of the contact types configured in your group. Self-contained Naftiko capability covering one Factset business surface.

Run with Naftiko FactsetContact Types

What You Can Do

GET
Getcontacttypes — Factset Get list of the contact types configured in your group
/v1/v1/contact-types
POST
Createcontacttype — Factset Create contact types
/v1/v1/contact-types
PUT
Updatecontacttype — Factset Edit a contact type
/v1/v1/contact-types/{contacttypeid}
DELETE
Deletecontacttype — Factset Delete a contact type
/v1/v1/contact-types/{contacttypeid}

MCP Tools

factset-get-list-contact-types

Factset Get list of the contact types configured in your group

read-only idempotent
factset-create-contact-types

Factset Create contact types

factset-edit-contact-type

Factset Edit a contact type

idempotent
factset-delete-contact-type

Factset Delete a contact type

idempotent

Capability Spec

irn-configuration-contact-types.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Factset IRN API v1 — Contact Types
  description: 'Factset IRN API v1 — Contact Types. 4 operations. Lead operation: Factset Get list of the contact types configured
    in your group. Self-contained Naftiko capability covering one Factset business surface.'
  tags:
  - Factset
  - Contact Types
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    FACTSET_API_KEY: FACTSET_API_KEY
capability:
  consumes:
  - type: http
    namespace: irn-configuration-contact-types
    baseUri: https://api.factset.com/research/irn
    description: Factset IRN API v1 — Contact Types business capability. Self-contained, no shared references.
    resources:
    - name: v1-contact-types
      path: /v1/contact-types
      operations:
      - name: getcontacttypes
        method: GET
        description: Factset Get list of the contact types configured in your group
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createcontacttype
        method: POST
        description: Factset Create contact types
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: v1-contact-types-contactTypeId
      path: /v1/contact-types/{contactTypeId}
      operations:
      - name: updatecontacttype
        method: PUT
        description: Factset Edit a contact type
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: contactTypeId
          in: path
          type: string
          description: contactTypeId to update associated record
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletecontacttype
        method: DELETE
        description: Factset Delete a contact type
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: contactTypeId
          in: path
          type: string
          description: contactTypeId to delete associated record
          required: true
    authentication:
      type: basic
      username: '{{env.FACTSET_USER}}'
      password: '{{env.FACTSET_PASS}}'
  exposes:
  - type: rest
    namespace: irn-configuration-contact-types-rest
    port: 8080
    description: REST adapter for Factset IRN API v1 — Contact Types. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/v1/contact-types
      name: v1-contact-types
      description: REST surface for v1-contact-types.
      operations:
      - method: GET
        name: getcontacttypes
        description: Factset Get list of the contact types configured in your group
        call: irn-configuration-contact-types.getcontacttypes
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createcontacttype
        description: Factset Create contact types
        call: irn-configuration-contact-types.createcontacttype
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/contact-types/{contacttypeid}
      name: v1-contact-types-contacttypeid
      description: REST surface for v1-contact-types-contactTypeId.
      operations:
      - method: PUT
        name: updatecontacttype
        description: Factset Edit a contact type
        call: irn-configuration-contact-types.updatecontacttype
        with:
          contactTypeId: rest.contactTypeId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletecontacttype
        description: Factset Delete a contact type
        call: irn-configuration-contact-types.deletecontacttype
        with:
          contactTypeId: rest.contactTypeId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: irn-configuration-contact-types-mcp
    port: 9090
    transport: http
    description: MCP adapter for Factset IRN API v1 — Contact Types. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: factset-get-list-contact-types
      description: Factset Get list of the contact types configured in your group
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: irn-configuration-contact-types.getcontacttypes
      outputParameters:
      - type: object
        mapping: $.
    - name: factset-create-contact-types
      description: Factset Create contact types
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: irn-configuration-contact-types.createcontacttype
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: factset-edit-contact-type
      description: Factset Edit a contact type
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: irn-configuration-contact-types.updatecontacttype
      with:
        contactTypeId: tools.contactTypeId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: factset-delete-contact-type
      description: Factset Delete a contact type
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: irn-configuration-contact-types.deletecontacttype
      with:
        contactTypeId: tools.contactTypeId
      outputParameters:
      - type: object
        mapping: $.