Factset · Capability

Factset IRN API v1 — Contact Roles

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

Run with Naftiko FactsetContact Roles

What You Can Do

GET
Getcontactroles — Factset Get list of the contact roles configured in your group
/v1/v1/contact-roles
POST
Createcontactrole — Factset Create contact roles
/v1/v1/contact-roles
PUT
Updatecontactrole — Factset Edit a contact role
/v1/v1/contact-roles/{contactroleid}
DELETE
Deletecontactrole — Factset Delete a contact role
/v1/v1/contact-roles/{contactroleid}

MCP Tools

factset-get-list-contact-roles

Factset Get list of the contact roles configured in your group

read-only idempotent
factset-create-contact-roles

Factset Create contact roles

factset-edit-contact-role

Factset Edit a contact role

idempotent
factset-delete-contact-role

Factset Delete a contact role

idempotent

Capability Spec

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