Factset · Capability

Factset IRN API v1 — Phone Number Types

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

Run with Naftiko FactsetPhone Number Types

What You Can Do

GET
Getphonenumbertypes — Factset Get list of the phone types configured in your group
/v1/v1/phone-number-types
POST
Createphonenumbertype — Factset Create a phone type
/v1/v1/phone-number-types
PUT
Updatephonenumbertype — Factset Edit a phone type
/v1/v1/phone-number-types/{phonenumbertypeid}
DELETE
Deletephonenumbertype — Factset Delete a phone type
/v1/v1/phone-number-types/{phonenumbertypeid}

MCP Tools

factset-get-list-phone-types

Factset Get list of the phone types configured in your group

read-only idempotent
factset-create-phone-type

Factset Create a phone type

factset-edit-phone-type

Factset Edit a phone type

idempotent
factset-delete-phone-type

Factset Delete a phone type

idempotent

Capability Spec

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