Verizon · Capability

Verizon ThingSpace Connectivity Management API — Callbacks

Verizon ThingSpace Connectivity Management API — Callbacks. 2 operations. Lead operation: Verizon List Registered Callbacks. Self-contained Naftiko capability covering one Verizon business surface.

Run with Naftiko VerizonCallbacks

What You Can Do

GET
Listregisteredcallbacks — Verizon List Registered Callbacks
/v1/callbacks/{accountname}
POST
Registercallback — Verizon Register Callback
/v1/callbacks/{accountname}

MCP Tools

verizon-list-registered-callbacks

Verizon List Registered Callbacks

read-only idempotent
verizon-register-callback

Verizon Register Callback

Capability Spec

thingspace-connectivity-callbacks.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Verizon ThingSpace Connectivity Management API — Callbacks
  description: 'Verizon ThingSpace Connectivity Management API — Callbacks. 2 operations. Lead operation: Verizon List Registered
    Callbacks. Self-contained Naftiko capability covering one Verizon business surface.'
  tags:
  - Verizon
  - Callbacks
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    VERIZON_API_KEY: VERIZON_API_KEY
capability:
  consumes:
  - type: http
    namespace: thingspace-connectivity-callbacks
    baseUri: https://thingspace.verizon.com/api/m2m/v2
    description: Verizon ThingSpace Connectivity Management API — Callbacks business capability. Self-contained, no shared
      references.
    resources:
    - name: callbacks-accountName
      path: /callbacks/{accountName}
      operations:
      - name: listregisteredcallbacks
        method: GET
        description: Verizon List Registered Callbacks
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: accountName
          in: path
          type: string
          description: Account name
          required: true
      - name: registercallback
        method: POST
        description: Verizon Register Callback
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: accountName
          in: path
          type: string
          description: Account name
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.VERIZON_API_KEY}}'
  exposes:
  - type: rest
    namespace: thingspace-connectivity-callbacks-rest
    port: 8080
    description: REST adapter for Verizon ThingSpace Connectivity Management API — Callbacks. One Spectral-compliant resource
      per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/callbacks/{accountname}
      name: callbacks-accountname
      description: REST surface for callbacks-accountName.
      operations:
      - method: GET
        name: listregisteredcallbacks
        description: Verizon List Registered Callbacks
        call: thingspace-connectivity-callbacks.listregisteredcallbacks
        with:
          accountName: rest.accountName
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: registercallback
        description: Verizon Register Callback
        call: thingspace-connectivity-callbacks.registercallback
        with:
          accountName: rest.accountName
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: thingspace-connectivity-callbacks-mcp
    port: 9090
    transport: http
    description: MCP adapter for Verizon ThingSpace Connectivity Management API — Callbacks. One tool per consumed operation,
      routed inline through this capability's consumes block.
    tools:
    - name: verizon-list-registered-callbacks
      description: Verizon List Registered Callbacks
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: thingspace-connectivity-callbacks.listregisteredcallbacks
      with:
        accountName: tools.accountName
      outputParameters:
      - type: object
        mapping: $.
    - name: verizon-register-callback
      description: Verizon Register Callback
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: thingspace-connectivity-callbacks.registercallback
      with:
        accountName: tools.accountName
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.