Fortify · Capability

Fortify ScanCentral DAST API — Scan Schedules

Fortify ScanCentral DAST API — Scan Schedules. 5 operations. Lead operation: Fortify List scan schedules. Self-contained Naftiko capability covering one Fortify business surface.

Run with Naftiko FortifyScan Schedules

What You Can Do

GET
Listscanschedules — Fortify List scan schedules
/v1/scan-schedules
POST
Createscanschedule — Fortify Create scan schedule
/v1/scan-schedules
GET
Getscanschedule — Fortify Get scan schedule
/v1/scan-schedules/{scanscheduleid}
PUT
Updatescanschedule — Fortify Update scan schedule
/v1/scan-schedules/{scanscheduleid}
DELETE
Deletescanschedule — Fortify Delete scan schedule
/v1/scan-schedules/{scanscheduleid}

MCP Tools

fortify-list-scan-schedules

Fortify List scan schedules

read-only idempotent
fortify-create-scan-schedule

Fortify Create scan schedule

fortify-get-scan-schedule

Fortify Get scan schedule

read-only idempotent
fortify-update-scan-schedule

Fortify Update scan schedule

idempotent
fortify-delete-scan-schedule

Fortify Delete scan schedule

idempotent

Capability Spec

scancentral-dast-scan-schedules.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Fortify ScanCentral DAST API — Scan Schedules
  description: 'Fortify ScanCentral DAST API — Scan Schedules. 5 operations. Lead operation: Fortify List scan schedules.
    Self-contained Naftiko capability covering one Fortify business surface.'
  tags:
  - Fortify
  - Scan Schedules
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    FORTIFY_API_KEY: FORTIFY_API_KEY
capability:
  consumes:
  - type: http
    namespace: scancentral-dast-scan-schedules
    baseUri: ''
    description: Fortify ScanCentral DAST API — Scan Schedules business capability. Self-contained, no shared references.
    resources:
    - name: scan-schedules
      path: /scan-schedules
      operations:
      - name: listscanschedules
        method: GET
        description: Fortify List scan schedules
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createscanschedule
        method: POST
        description: Fortify Create scan schedule
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: scan-schedules-scanScheduleId
      path: /scan-schedules/{scanScheduleId}
      operations:
      - name: getscanschedule
        method: GET
        description: Fortify Get scan schedule
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: scanScheduleId
          in: path
          type: string
          description: Unique identifier of the scan schedule
          required: true
      - name: updatescanschedule
        method: PUT
        description: Fortify Update scan schedule
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: scanScheduleId
          in: path
          type: string
          description: Unique identifier of the scan schedule
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletescanschedule
        method: DELETE
        description: Fortify Delete scan schedule
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: scanScheduleId
          in: path
          type: string
          description: Unique identifier of the scan schedule
          required: true
    authentication:
      type: apikey
      key: Authorization
      value: '{{env.FORTIFY_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: scancentral-dast-scan-schedules-rest
    port: 8080
    description: REST adapter for Fortify ScanCentral DAST API — Scan Schedules. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/scan-schedules
      name: scan-schedules
      description: REST surface for scan-schedules.
      operations:
      - method: GET
        name: listscanschedules
        description: Fortify List scan schedules
        call: scancentral-dast-scan-schedules.listscanschedules
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createscanschedule
        description: Fortify Create scan schedule
        call: scancentral-dast-scan-schedules.createscanschedule
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/scan-schedules/{scanscheduleid}
      name: scan-schedules-scanscheduleid
      description: REST surface for scan-schedules-scanScheduleId.
      operations:
      - method: GET
        name: getscanschedule
        description: Fortify Get scan schedule
        call: scancentral-dast-scan-schedules.getscanschedule
        with:
          scanScheduleId: rest.scanScheduleId
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updatescanschedule
        description: Fortify Update scan schedule
        call: scancentral-dast-scan-schedules.updatescanschedule
        with:
          scanScheduleId: rest.scanScheduleId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletescanschedule
        description: Fortify Delete scan schedule
        call: scancentral-dast-scan-schedules.deletescanschedule
        with:
          scanScheduleId: rest.scanScheduleId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: scancentral-dast-scan-schedules-mcp
    port: 9090
    transport: http
    description: MCP adapter for Fortify ScanCentral DAST API — Scan Schedules. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: fortify-list-scan-schedules
      description: Fortify List scan schedules
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: scancentral-dast-scan-schedules.listscanschedules
      outputParameters:
      - type: object
        mapping: $.
    - name: fortify-create-scan-schedule
      description: Fortify Create scan schedule
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: scancentral-dast-scan-schedules.createscanschedule
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: fortify-get-scan-schedule
      description: Fortify Get scan schedule
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: scancentral-dast-scan-schedules.getscanschedule
      with:
        scanScheduleId: tools.scanScheduleId
      outputParameters:
      - type: object
        mapping: $.
    - name: fortify-update-scan-schedule
      description: Fortify Update scan schedule
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: scancentral-dast-scan-schedules.updatescanschedule
      with:
        scanScheduleId: tools.scanScheduleId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: fortify-delete-scan-schedule
      description: Fortify Delete scan schedule
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: scancentral-dast-scan-schedules.deletescanschedule
      with:
        scanScheduleId: tools.scanScheduleId
      outputParameters:
      - type: object
        mapping: $.