1NCE · Capability

1NCE SIM Management — Connectivity

1NCE SIM Management — Connectivity. 3 operations. Lead operation: Get SIM Status. Self-contained Naftiko capability covering one 1NCE business surface.

1NCE SIM Management — Connectivity is a Naftiko capability published by 1NCE, one of 16 capabilities the APIs.io network indexes for this provider. It bundles 3 operations across the GET and POST methods rooted at /v1/v1/sims/{…}.

The capability includes 2 read-only operations and 1 state-changing operation. Lead operation: Get SIM Status. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include 1NCE, SIM, and Connectivity.

Run with Naftiko 1NCESIMConnectivity

What You Can Do

GET
Get status — Get SIM Status
/v1/v1/sims/{iccid}/status
GET
Get connectivity info — Get SIM Connectivity
/v1/v1/sims/{iccid}/connectivity_info
POST
Create reset — Create Connectivity Reset
/v1/v1/sims/{iccid}/reset

MCP Tools

1nce-get-status

Get SIM Status

read-only idempotent
1nce-get-connectivity-info

Get SIM Connectivity

read-only idempotent
1nce-create-reset

Create Connectivity Reset

Capability Spec

sim-management-connectivity.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: "1NCE SIM Management \u2014 Connectivity"
  description: "1NCE SIM Management \u2014 Connectivity. 3 operations. Lead operation: Get SIM Status. Self-contained Naftiko\
    \ capability covering one 1NCE business surface."
  tags:
    - 1NCE
    - SIM
    - Connectivity
  created: '2026-05-25'
  modified: '2026-05-25'
binds:
  - namespace: env
    keys:
      ONE_NCE_ACCESS_TOKEN: ONE_NCE_ACCESS_TOKEN
capability:
  consumes:
    - type: http
      namespace: sim-management-connectivity
      baseUri: https://api.1nce.com/management-api
      description: "1NCE SIM Management \u2014 Connectivity business capability. Self-contained, no shared references."
      resources:
        - name: v1-sims-iccid-status
          path: /v1/sims/{iccid}/status
          operations:
            - name: get-status
              method: GET
              description: Get SIM Status
              outputRawFormat: json
              outputParameters:
                - name: result
                  type: object
                  value: $.
              inputParameters:
                - name: body
                  in: body
                  type: object
                  description: Request body (JSON).
                  required: false
        - name: v1-sims-iccid-connectivity-info
          path: /v1/sims/{iccid}/connectivity_info
          operations:
            - name: get-connectivity-info
              method: GET
              description: Get SIM Connectivity
              outputRawFormat: json
              outputParameters:
                - name: result
                  type: object
                  value: $.
              inputParameters:
                - name: body
                  in: body
                  type: object
                  description: Request body (JSON).
                  required: false
        - name: v1-sims-iccid-reset
          path: /v1/sims/{iccid}/reset
          operations:
            - name: create-reset
              method: POST
              description: Create Connectivity Reset
              outputRawFormat: json
              outputParameters:
                - name: result
                  type: object
                  value: $.
              inputParameters:
                - name: body
                  in: body
                  type: object
                  description: Request body (JSON).
                  required: true
      authentication:
        type: bearer
        token: '{{env.ONE_NCE_ACCESS_TOKEN}}'
  exposes:
    - type: rest
      namespace: sim-management-connectivity-rest
      port: 8080
      description: "REST adapter for 1NCE SIM Management \u2014 Connectivity. One Spectral-compliant resource per consumed\
        \ operation, prefixed with /v1."
      resources:
        - path: /v1/v1/sims/{iccid}/status
          name: v1-sims-iccid-status
          description: REST surface for v1-sims-iccid-status.
          operations:
            - method: GET
              name: get-status
              description: Get SIM Status
              call: sim-management-connectivity.get-status
              with:
                body: rest.body
              outputParameters:
                - type: object
                  mapping: $.
        - path: /v1/v1/sims/{iccid}/connectivity_info
          name: v1-sims-iccid-connectivity-info
          description: REST surface for v1-sims-iccid-connectivity-info.
          operations:
            - method: GET
              name: get-connectivity-info
              description: Get SIM Connectivity
              call: sim-management-connectivity.get-connectivity-info
              with:
                body: rest.body
              outputParameters:
                - type: object
                  mapping: $.
        - path: /v1/v1/sims/{iccid}/reset
          name: v1-sims-iccid-reset
          description: REST surface for v1-sims-iccid-reset.
          operations:
            - method: POST
              name: create-reset
              description: Create Connectivity Reset
              call: sim-management-connectivity.create-reset
              with:
                body: rest.body
              outputParameters:
                - type: object
                  mapping: $.
    - type: mcp
      namespace: sim-management-connectivity-mcp
      port: 9090
      transport: http
      description: "MCP adapter for 1NCE SIM Management \u2014 Connectivity. One tool per consumed operation, routed inline\
        \ through this capability consumes block."
      tools:
        - name: 1nce-get-status
          description: Get SIM Status
          hints:
            readOnly: true
            destructive: false
            idempotent: true
          call: sim-management-connectivity.get-status
          with:
            body: tools.body
          outputParameters:
            - type: object
              mapping: $.
        - name: 1nce-get-connectivity-info
          description: Get SIM Connectivity
          hints:
            readOnly: true
            destructive: false
            idempotent: true
          call: sim-management-connectivity.get-connectivity-info
          with:
            body: tools.body
          outputParameters:
            - type: object
              mapping: $.
        - name: 1nce-create-reset
          description: Create Connectivity Reset
          hints:
            readOnly: false
            destructive: false
            idempotent: false
          call: sim-management-connectivity.create-reset
          with:
            body: tools.body
          outputParameters:
            - type: object
              mapping: $.