TM Forum · Capability

Account Management — financialAccount

Account Management — financialAccount. 5 operations. Lead operation: List or find FinancialAccount objects. Self-contained Naftiko capability covering one Tm Forum business surface.

Run with Naftiko Tm ForumfinancialAccount

What You Can Do

GET
Listfinancialaccount — List or find FinancialAccount objects
/v1/financialaccount
POST
Createfinancialaccount — Creates a FinancialAccount
/v1/financialaccount
GET
Retrievefinancialaccount — Retrieves a FinancialAccount by ID
/v1/financialaccount/{id}
PATCH
Patchfinancialaccount — Updates partially a FinancialAccount
/v1/financialaccount/{id}
DELETE
Deletefinancialaccount — Deletes a FinancialAccount
/v1/financialaccount/{id}

MCP Tools

list-find-financialaccount-objects

List or find FinancialAccount objects

read-only idempotent
creates-financialaccount

Creates a FinancialAccount

retrieves-financialaccount-id

Retrieves a FinancialAccount by ID

read-only idempotent
updates-partially-financialaccount

Updates partially a FinancialAccount

idempotent
deletes-financialaccount

Deletes a FinancialAccount

idempotent

Capability Spec

tmf666-account-management-financialaccount.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Account Management — financialAccount
  description: 'Account Management — financialAccount. 5 operations. Lead operation: List or find FinancialAccount objects.
    Self-contained Naftiko capability covering one Tm Forum business surface.'
  tags:
  - Tm Forum
  - financialAccount
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TM_FORUM_API_KEY: TM_FORUM_API_KEY
capability:
  consumes:
  - type: http
    namespace: tmf666-account-management-financialaccount
    baseUri: https://serverRoot/tmf-api/accountManagement/v4
    description: Account Management — financialAccount business capability. Self-contained, no shared references.
    resources:
    - name: financialAccount
      path: /financialAccount
      operations:
      - name: listfinancialaccount
        method: GET
        description: List or find FinancialAccount objects
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: fields
          in: query
          type: string
          description: Comma-separated properties to be provided in response
        - name: offset
          in: query
          type: integer
          description: Requested index for start of resources to be provided in response
        - name: limit
          in: query
          type: integer
          description: Requested number of resources to be provided in response
      - name: createfinancialaccount
        method: POST
        description: Creates a FinancialAccount
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: financialAccount
          in: body
          type: string
          description: The FinancialAccount to be created
          required: true
    - name: financialAccount-id
      path: /financialAccount/{id}
      operations:
      - name: retrievefinancialaccount
        method: GET
        description: Retrieves a FinancialAccount by ID
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Identifier of the FinancialAccount
          required: true
        - name: fields
          in: query
          type: string
          description: Comma-separated properties to provide in response
      - name: patchfinancialaccount
        method: PATCH
        description: Updates partially a FinancialAccount
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Identifier of the FinancialAccount
          required: true
        - name: financialAccount
          in: body
          type: string
          description: The FinancialAccount to be updated
          required: true
      - name: deletefinancialaccount
        method: DELETE
        description: Deletes a FinancialAccount
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Identifier of the FinancialAccount
          required: true
  exposes:
  - type: rest
    namespace: tmf666-account-management-financialaccount-rest
    port: 8080
    description: REST adapter for Account Management — financialAccount. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/financialaccount
      name: financialaccount
      description: REST surface for financialAccount.
      operations:
      - method: GET
        name: listfinancialaccount
        description: List or find FinancialAccount objects
        call: tmf666-account-management-financialaccount.listfinancialaccount
        with:
          fields: rest.fields
          offset: rest.offset
          limit: rest.limit
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createfinancialaccount
        description: Creates a FinancialAccount
        call: tmf666-account-management-financialaccount.createfinancialaccount
        with:
          financialAccount: rest.financialAccount
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/financialaccount/{id}
      name: financialaccount-id
      description: REST surface for financialAccount-id.
      operations:
      - method: GET
        name: retrievefinancialaccount
        description: Retrieves a FinancialAccount by ID
        call: tmf666-account-management-financialaccount.retrievefinancialaccount
        with:
          id: rest.id
          fields: rest.fields
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: patchfinancialaccount
        description: Updates partially a FinancialAccount
        call: tmf666-account-management-financialaccount.patchfinancialaccount
        with:
          id: rest.id
          financialAccount: rest.financialAccount
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletefinancialaccount
        description: Deletes a FinancialAccount
        call: tmf666-account-management-financialaccount.deletefinancialaccount
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: tmf666-account-management-financialaccount-mcp
    port: 9090
    transport: http
    description: MCP adapter for Account Management — financialAccount. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-find-financialaccount-objects
      description: List or find FinancialAccount objects
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: tmf666-account-management-financialaccount.listfinancialaccount
      with:
        fields: tools.fields
        offset: tools.offset
        limit: tools.limit
      outputParameters:
      - type: object
        mapping: $.
    - name: creates-financialaccount
      description: Creates a FinancialAccount
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: tmf666-account-management-financialaccount.createfinancialaccount
      with:
        financialAccount: tools.financialAccount
      outputParameters:
      - type: object
        mapping: $.
    - name: retrieves-financialaccount-id
      description: Retrieves a FinancialAccount by ID
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: tmf666-account-management-financialaccount.retrievefinancialaccount
      with:
        id: tools.id
        fields: tools.fields
      outputParameters:
      - type: object
        mapping: $.
    - name: updates-partially-financialaccount
      description: Updates partially a FinancialAccount
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: tmf666-account-management-financialaccount.patchfinancialaccount
      with:
        id: tools.id
        financialAccount: tools.financialAccount
      outputParameters:
      - type: object
        mapping: $.
    - name: deletes-financialaccount
      description: Deletes a FinancialAccount
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: tmf666-account-management-financialaccount.deletefinancialaccount
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.