Rapid7 · Capability

InsightAppSec API — Schedules

InsightAppSec API — Schedules. 5 operations. Lead operation: Get Schedules. Self-contained Naftiko capability covering one business surface.

InsightAppSec API — Schedules is a Naftiko capability published by Rapid7, one of 47 capabilities the APIs.io network indexes for this provider. It bundles 5 operations across the GET, POST, PUT, and DELETE methods rooted at /v1/schedules.

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

Tagged areas include Rapid7 and Schedules.

Run with Naftiko Rapid7Schedules

What You Can Do

GET
Getschedules — Get Schedules
/v1/schedules
POST
Createschedule — Create Schedule
/v1/schedules
GET
Getschedule — Get Schedule
/v1/schedules/{schedule-id}
PUT
Updateschedule — Update Schedule
/v1/schedules/{schedule-id}
DELETE
Deleteschedule — Delete Schedule
/v1/schedules/{schedule-id}

MCP Tools

rapid7-getschedules

Get Schedules

read-only idempotent
rapid7-createschedule

Create Schedule

rapid7-getschedule

Get Schedule

read-only idempotent
rapid7-updateschedule

Update Schedule

idempotent
rapid7-deleteschedule

Delete Schedule

idempotent

Capability Spec

insightappsec-schedules.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: InsightAppSec API — Schedules
  description: 'InsightAppSec API — Schedules. 5 operations. Lead operation: Get Schedules. Self-contained Naftiko capability covering one business surface.'
  tags:
  - Rapid7
  - Schedules
  created: '2026-05-20'
  modified: '2026-05-20'
binds:
- namespace: env
  keys:
    RAPID7_API_KEY: RAPID7_API_KEY
capability:
  consumes:
  - type: http
    namespace: insightappsec-schedules
    baseUri: https://[region].api.insight.rapid7.com/ias/v1
    description: InsightAppSec API — Schedules business capability. Self-contained, no shared references.
    resources:
    - name: schedules
      path: /schedules
      operations:
      - name: getschedules
        method: GET
        description: Get Schedules
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: index
          in: query
          type: integer
          description: query parameter index.
        - name: size
          in: query
          type: integer
          description: query parameter size.
        - name: sort
          in: query
          type: string
          description: query parameter sort.
        - name: page-token
          in: query
          type: string
          description: query parameter page-token.
      - name: createschedule
        method: POST
        description: Create Schedule
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: schedules-schedule-id
      path: /schedules/{schedule-id}
      operations:
      - name: getschedule
        method: GET
        description: Get Schedule
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: schedule-id
          in: path
          type: string
          description: path parameter schedule-id.
          required: true
      - name: updateschedule
        method: PUT
        description: Update Schedule
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: schedule-id
          in: path
          type: string
          description: path parameter schedule-id.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deleteschedule
        method: DELETE
        description: Delete Schedule
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: schedule-id
          in: path
          type: string
          description: path parameter schedule-id.
          required: true
  exposes:
  - type: rest
    namespace: insightappsec-schedules-rest
    port: 8080
    description: REST adapter for InsightAppSec API — Schedules. One resource per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/schedules
      name: schedules
      description: REST surface for schedules.
      operations:
      - method: GET
        name: getschedules
        description: Get Schedules
        call: insightappsec-schedules.getschedules
        with:
          index: rest.index
          size: rest.size
          sort: rest.sort
          page-token: rest.page-token
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createschedule
        description: Create Schedule
        call: insightappsec-schedules.createschedule
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/schedules/{schedule-id}
      name: schedules-schedule-id
      description: REST surface for schedules-schedule-id.
      operations:
      - method: GET
        name: getschedule
        description: Get Schedule
        call: insightappsec-schedules.getschedule
        with:
          schedule-id: rest.schedule-id
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updateschedule
        description: Update Schedule
        call: insightappsec-schedules.updateschedule
        with:
          schedule-id: rest.schedule-id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteschedule
        description: Delete Schedule
        call: insightappsec-schedules.deleteschedule
        with:
          schedule-id: rest.schedule-id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: insightappsec-schedules-mcp
    port: 9090
    transport: http
    description: MCP adapter for InsightAppSec API — Schedules. One tool per consumed operation, routed inline through this capability's consumes block.
    tools:
    - name: rapid7-getschedules
      description: Get Schedules
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: insightappsec-schedules.getschedules
      with:
        index: tools.index
        size: tools.size
        sort: tools.sort
        page-token: tools.page-token
      outputParameters:
      - type: object
        mapping: $.
    - name: rapid7-createschedule
      description: Create Schedule
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: insightappsec-schedules.createschedule
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: rapid7-getschedule
      description: Get Schedule
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: insightappsec-schedules.getschedule
      with:
        schedule-id: tools.schedule-id
      outputParameters:
      - type: object
        mapping: $.
    - name: rapid7-updateschedule
      description: Update Schedule
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: insightappsec-schedules.updateschedule
      with:
        schedule-id: tools.schedule-id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: rapid7-deleteschedule
      description: Delete Schedule
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: insightappsec-schedules.deleteschedule
      with:
        schedule-id: tools.schedule-id
      outputParameters:
      - type: object
        mapping: $.