Incident.io · Capability

Incident.io API — Escalation Paths

Incident.io API — Escalation Paths. 5 operations. Lead operation: Escalation Paths. Self-contained Naftiko capability covering one Incident Io business surface.

Run with Naftiko Incident IoEscalation Paths

What You Can Do

GET
Listescalationpaths — listescalationpaths
/v1/escalation-paths
POST
Createescalationpath — createescalationpath
/v1/escalation-paths
GET
Getescalationpath — getescalationpath
/v1/escalation-paths/{id}
PUT
Updateescalationpath — updateescalationpath
/v1/escalation-paths/{id}
DELETE
Deleteescalationpath — deleteescalationpath
/v1/escalation-paths/{id}

MCP Tools

listescalationpaths

listescalationpaths

read-only idempotent
createescalationpath

createescalationpath

getescalationpath

getescalationpath

read-only idempotent
updateescalationpath

updateescalationpath

idempotent
deleteescalationpath

deleteescalationpath

idempotent

Capability Spec

incident-io-escalation-paths.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Incident.io API — Escalation Paths
  description: 'Incident.io API — Escalation Paths. 5 operations. Lead operation: Escalation Paths. Self-contained Naftiko
    capability covering one Incident Io business surface.'
  tags:
  - Incident Io
  - Escalation Paths
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    INCIDENT_IO_API_KEY: INCIDENT_IO_API_KEY
capability:
  consumes:
  - type: http
    namespace: incident-io-escalation-paths
    baseUri: https://api.incident.io/v2
    description: Incident.io API — Escalation Paths business capability. Self-contained, no shared references.
    resources:
    - name: escalation-paths
      path: /escalation-paths
      operations:
      - name: listescalationpaths
        method: GET
        description: ''
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createescalationpath
        method: POST
        description: ''
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: escalation-paths-id
      path: /escalation-paths/{id}
      operations:
      - name: getescalationpath
        method: GET
        description: ''
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updateescalationpath
        method: PUT
        description: ''
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deleteescalationpath
        method: DELETE
        description: ''
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.INCIDENT_IO_API_KEY}}'
  exposes:
  - type: rest
    namespace: incident-io-escalation-paths-rest
    port: 8080
    description: REST adapter for Incident.io API — Escalation Paths. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/escalation-paths
      name: escalation-paths
      description: REST surface for escalation-paths.
      operations:
      - method: GET
        name: listescalationpaths
        description: listescalationpaths
        call: incident-io-escalation-paths.listescalationpaths
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createescalationpath
        description: createescalationpath
        call: incident-io-escalation-paths.createescalationpath
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/escalation-paths/{id}
      name: escalation-paths-id
      description: REST surface for escalation-paths-id.
      operations:
      - method: GET
        name: getescalationpath
        description: getescalationpath
        call: incident-io-escalation-paths.getescalationpath
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updateescalationpath
        description: updateescalationpath
        call: incident-io-escalation-paths.updateescalationpath
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteescalationpath
        description: deleteescalationpath
        call: incident-io-escalation-paths.deleteescalationpath
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: incident-io-escalation-paths-mcp
    port: 9090
    transport: http
    description: MCP adapter for Incident.io API — Escalation Paths. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: listescalationpaths
      description: listescalationpaths
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: incident-io-escalation-paths.listescalationpaths
      outputParameters:
      - type: object
        mapping: $.
    - name: createescalationpath
      description: createescalationpath
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: incident-io-escalation-paths.createescalationpath
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: getescalationpath
      description: getescalationpath
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: incident-io-escalation-paths.getescalationpath
      outputParameters:
      - type: object
        mapping: $.
    - name: updateescalationpath
      description: updateescalationpath
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: incident-io-escalation-paths.updateescalationpath
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: deleteescalationpath
      description: deleteescalationpath
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: incident-io-escalation-paths.deleteescalationpath
      outputParameters:
      - type: object
        mapping: $.