Amdocs · Capability

Amdocs connectX BSS API — Subscriptions

Amdocs connectX BSS API — Subscriptions. 2 operations. Lead operation: List customer subscriptions. Self-contained Naftiko capability covering one Amdocs business surface.

Run with Naftiko AmdocsSubscriptions

What You Can Do

GET
Listcustomersubscriptions — List customer subscriptions
/v1/v1/customers/{customerid}/subscriptions
POST
Createsubscription — Create subscription
/v1/v1/customers/{customerid}/subscriptions

MCP Tools

list-customer-subscriptions

List customer subscriptions

read-only idempotent
create-subscription

Create subscription

Capability Spec

connectx-subscriptions.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Amdocs connectX BSS API — Subscriptions
  description: 'Amdocs connectX BSS API — Subscriptions. 2 operations. Lead operation: List customer subscriptions. Self-contained
    Naftiko capability covering one Amdocs business surface.'
  tags:
  - Amdocs
  - Subscriptions
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    AMDOCS_API_KEY: AMDOCS_API_KEY
capability:
  consumes:
  - type: http
    namespace: connectx-subscriptions
    baseUri: https://api.amdocs-dbs.com
    description: Amdocs connectX BSS API — Subscriptions business capability. Self-contained, no shared references.
    resources:
    - name: v1-customers-customerId-subscriptions
      path: /v1/customers/{customerId}/subscriptions
      operations:
      - name: listcustomersubscriptions
        method: GET
        description: List customer subscriptions
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: customerId
          in: path
          type: string
          required: true
        - name: status
          in: query
          type: string
      - name: createsubscription
        method: POST
        description: Create subscription
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: customerId
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.AMDOCS_API_KEY}}'
  exposes:
  - type: rest
    namespace: connectx-subscriptions-rest
    port: 8080
    description: REST adapter for Amdocs connectX BSS API — Subscriptions. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/v1/customers/{customerid}/subscriptions
      name: v1-customers-customerid-subscriptions
      description: REST surface for v1-customers-customerId-subscriptions.
      operations:
      - method: GET
        name: listcustomersubscriptions
        description: List customer subscriptions
        call: connectx-subscriptions.listcustomersubscriptions
        with:
          customerId: rest.customerId
          status: rest.status
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createsubscription
        description: Create subscription
        call: connectx-subscriptions.createsubscription
        with:
          customerId: rest.customerId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: connectx-subscriptions-mcp
    port: 9090
    transport: http
    description: MCP adapter for Amdocs connectX BSS API — Subscriptions. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-customer-subscriptions
      description: List customer subscriptions
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: connectx-subscriptions.listcustomersubscriptions
      with:
        customerId: tools.customerId
        status: tools.status
      outputParameters:
      - type: object
        mapping: $.
    - name: create-subscription
      description: Create subscription
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: connectx-subscriptions.createsubscription
      with:
        customerId: tools.customerId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.