TM Forum · Capability

Account Management — billingCycleSpecification

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

Run with Naftiko Tm ForumbillingCycleSpecification

What You Can Do

GET
Listbillingcyclespecification — List or find BillingCycleSpecification objects
/v1/billingcyclespecification
POST
Createbillingcyclespecification — Creates a BillingCycleSpecification
/v1/billingcyclespecification
GET
Retrievebillingcyclespecification — Retrieves a BillingCycleSpecification by ID
/v1/billingcyclespecification/{id}
PATCH
Patchbillingcyclespecification — Updates partially a BillingCycleSpecification
/v1/billingcyclespecification/{id}
DELETE
Deletebillingcyclespecification — Deletes a BillingCycleSpecification
/v1/billingcyclespecification/{id}

MCP Tools

list-find-billingcyclespecification-objects

List or find BillingCycleSpecification objects

read-only idempotent
creates-billingcyclespecification

Creates a BillingCycleSpecification

retrieves-billingcyclespecification-id

Retrieves a BillingCycleSpecification by ID

read-only idempotent
updates-partially-billingcyclespecification

Updates partially a BillingCycleSpecification

idempotent
deletes-billingcyclespecification

Deletes a BillingCycleSpecification

idempotent

Capability Spec

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