TM Forum · Capability

Account Management — partyAccount

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

Run with Naftiko Tm ForumpartyAccount

What You Can Do

GET
Listpartyaccount — List or find PartyAccount objects
/v1/partyaccount
POST
Createpartyaccount — Creates a PartyAccount
/v1/partyaccount
GET
Retrievepartyaccount — Retrieves a PartyAccount by ID
/v1/partyaccount/{id}
PATCH
Patchpartyaccount — Updates partially a PartyAccount
/v1/partyaccount/{id}
DELETE
Deletepartyaccount — Deletes a PartyAccount
/v1/partyaccount/{id}

MCP Tools

list-find-partyaccount-objects

List or find PartyAccount objects

read-only idempotent
creates-partyaccount

Creates a PartyAccount

retrieves-partyaccount-id

Retrieves a PartyAccount by ID

read-only idempotent
updates-partially-partyaccount

Updates partially a PartyAccount

idempotent
deletes-partyaccount

Deletes a PartyAccount

idempotent

Capability Spec

tmf666-account-management-partyaccount.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Account Management — partyAccount
  description: 'Account Management — partyAccount. 5 operations. Lead operation: List or find PartyAccount objects. Self-contained
    Naftiko capability covering one Tm Forum business surface.'
  tags:
  - Tm Forum
  - partyAccount
  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-partyaccount
    baseUri: https://serverRoot/tmf-api/accountManagement/v4
    description: Account Management — partyAccount business capability. Self-contained, no shared references.
    resources:
    - name: partyAccount
      path: /partyAccount
      operations:
      - name: listpartyaccount
        method: GET
        description: List or find PartyAccount 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: createpartyaccount
        method: POST
        description: Creates a PartyAccount
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: partyAccount
          in: body
          type: string
          description: The PartyAccount to be created
          required: true
    - name: partyAccount-id
      path: /partyAccount/{id}
      operations:
      - name: retrievepartyaccount
        method: GET
        description: Retrieves a PartyAccount by ID
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Identifier of the PartyAccount
          required: true
        - name: fields
          in: query
          type: string
          description: Comma-separated properties to provide in response
      - name: patchpartyaccount
        method: PATCH
        description: Updates partially a PartyAccount
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Identifier of the PartyAccount
          required: true
        - name: partyAccount
          in: body
          type: string
          description: The PartyAccount to be updated
          required: true
      - name: deletepartyaccount
        method: DELETE
        description: Deletes a PartyAccount
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Identifier of the PartyAccount
          required: true
  exposes:
  - type: rest
    namespace: tmf666-account-management-partyaccount-rest
    port: 8080
    description: REST adapter for Account Management — partyAccount. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/partyaccount
      name: partyaccount
      description: REST surface for partyAccount.
      operations:
      - method: GET
        name: listpartyaccount
        description: List or find PartyAccount objects
        call: tmf666-account-management-partyaccount.listpartyaccount
        with:
          fields: rest.fields
          offset: rest.offset
          limit: rest.limit
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createpartyaccount
        description: Creates a PartyAccount
        call: tmf666-account-management-partyaccount.createpartyaccount
        with:
          partyAccount: rest.partyAccount
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/partyaccount/{id}
      name: partyaccount-id
      description: REST surface for partyAccount-id.
      operations:
      - method: GET
        name: retrievepartyaccount
        description: Retrieves a PartyAccount by ID
        call: tmf666-account-management-partyaccount.retrievepartyaccount
        with:
          id: rest.id
          fields: rest.fields
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: patchpartyaccount
        description: Updates partially a PartyAccount
        call: tmf666-account-management-partyaccount.patchpartyaccount
        with:
          id: rest.id
          partyAccount: rest.partyAccount
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletepartyaccount
        description: Deletes a PartyAccount
        call: tmf666-account-management-partyaccount.deletepartyaccount
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: tmf666-account-management-partyaccount-mcp
    port: 9090
    transport: http
    description: MCP adapter for Account Management — partyAccount. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-find-partyaccount-objects
      description: List or find PartyAccount objects
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: tmf666-account-management-partyaccount.listpartyaccount
      with:
        fields: tools.fields
        offset: tools.offset
        limit: tools.limit
      outputParameters:
      - type: object
        mapping: $.
    - name: creates-partyaccount
      description: Creates a PartyAccount
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: tmf666-account-management-partyaccount.createpartyaccount
      with:
        partyAccount: tools.partyAccount
      outputParameters:
      - type: object
        mapping: $.
    - name: retrieves-partyaccount-id
      description: Retrieves a PartyAccount by ID
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: tmf666-account-management-partyaccount.retrievepartyaccount
      with:
        id: tools.id
        fields: tools.fields
      outputParameters:
      - type: object
        mapping: $.
    - name: updates-partially-partyaccount
      description: Updates partially a PartyAccount
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: tmf666-account-management-partyaccount.patchpartyaccount
      with:
        id: tools.id
        partyAccount: tools.partyAccount
      outputParameters:
      - type: object
        mapping: $.
    - name: deletes-partyaccount
      description: Deletes a PartyAccount
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: tmf666-account-management-partyaccount.deletepartyaccount
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.