SS&C Geneva · Capability

SS&C Geneva Fund Accounting API — Portfolios

SS&C Geneva Fund Accounting API — Portfolios. 2 operations. Lead operation: List portfolios. Self-contained Naftiko capability covering one Ssc Geneva business surface.

Run with Naftiko Ssc GenevaPortfolios

What You Can Do

GET
Listportfolios — List portfolios
/v1/portfolios
GET
Getportfolio — Retrieve a portfolio
/v1/portfolios/{portfolioid}

MCP Tools

list-portfolios

List portfolios

read-only idempotent
retrieve-portfolio

Retrieve a portfolio

read-only idempotent

Capability Spec

fund-accounting-portfolios.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: SS&C Geneva Fund Accounting API — Portfolios
  description: 'SS&C Geneva Fund Accounting API — Portfolios. 2 operations. Lead operation: List portfolios. Self-contained
    Naftiko capability covering one Ssc Geneva business surface.'
  tags:
  - Ssc Geneva
  - Portfolios
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SSC_GENEVA_API_KEY: SSC_GENEVA_API_KEY
capability:
  consumes:
  - type: http
    namespace: fund-accounting-portfolios
    baseUri: https://api.ssctech.example.com/geneva/v1
    description: SS&C Geneva Fund Accounting API — Portfolios business capability. Self-contained, no shared references.
    resources:
    - name: portfolios
      path: /portfolios
      operations:
      - name: listportfolios
        method: GET
        description: List portfolios
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: fundType
          in: query
          type: string
        - name: currency
          in: query
          type: string
        - name: status
          in: query
          type: string
        - name: page
          in: query
          type: integer
        - name: size
          in: query
          type: integer
    - name: portfolios-portfolioId
      path: /portfolios/{portfolioId}
      operations:
      - name: getportfolio
        method: GET
        description: Retrieve a portfolio
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.SSC_GENEVA_API_KEY}}'
  exposes:
  - type: rest
    namespace: fund-accounting-portfolios-rest
    port: 8080
    description: REST adapter for SS&C Geneva Fund Accounting API — Portfolios. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/portfolios
      name: portfolios
      description: REST surface for portfolios.
      operations:
      - method: GET
        name: listportfolios
        description: List portfolios
        call: fund-accounting-portfolios.listportfolios
        with:
          fundType: rest.fundType
          currency: rest.currency
          status: rest.status
          page: rest.page
          size: rest.size
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/portfolios/{portfolioid}
      name: portfolios-portfolioid
      description: REST surface for portfolios-portfolioId.
      operations:
      - method: GET
        name: getportfolio
        description: Retrieve a portfolio
        call: fund-accounting-portfolios.getportfolio
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: fund-accounting-portfolios-mcp
    port: 9090
    transport: http
    description: MCP adapter for SS&C Geneva Fund Accounting API — Portfolios. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: list-portfolios
      description: List portfolios
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: fund-accounting-portfolios.listportfolios
      with:
        fundType: tools.fundType
        currency: tools.currency
        status: tools.status
        page: tools.page
        size: tools.size
      outputParameters:
      - type: object
        mapping: $.
    - name: retrieve-portfolio
      description: Retrieve a portfolio
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: fund-accounting-portfolios.getportfolio
      outputParameters:
      - type: object
        mapping: $.