BigID · Capability

BigID Scans — Profiles

BigID Scans API — Scan Profiles. 2 operations to create and retrieve scan profiles. Self-contained Naftiko capability covering one BigID business surface.

BigID Scans — Profiles is a Naftiko capability published by BigID, one of 9 capabilities the APIs.io network indexes for this provider. It bundles 2 operations across the POST and GET methods rooted at /v1/scanProfiles.

The capability includes 1 read-only operation and 1 state-changing operation. Lead operation: BigID Create A Scan Profile. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include BigID, Scans, and Profiles.

Run with Naftiko BigIDScansProfiles

What You Can Do

POST
Createscanprofile — BigID Create A Scan Profile
/v1/scanProfiles
GET
Getscanprofile — BigID Get A Scan Profile
/v1/scanProfiles/{id}

MCP Tools

bigid-create-scan-profile

BigID Create A Scan Profile

bigid-get-scan-profile

BigID Get A Scan Profile

read-only idempotent

Capability Spec

scans-profiles.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: BigID Scans — Profiles
  description: 'BigID Scans API — Scan Profiles. 2 operations to create and retrieve scan profiles.
    Self-contained Naftiko capability covering one BigID business surface.'
  tags:
    - BigID
    - Scans
    - Profiles
  created: '2026-05-25'
  modified: '2026-05-25'
binds:
  - namespace: env
    keys:
      BIGID_BASE_URL: BIGID_BASE_URL
      BIGID_SYSTEM_TOKEN: BIGID_SYSTEM_TOKEN
capability:
  consumes:
    - type: http
      namespace: scans-profiles
      baseUri: '{{env.BIGID_BASE_URL}}'
      description: BigID Scan Profiles business capability.
      resources:
        - name: scan-profiles
          path: /api/v1/scanProfiles
          operations:
            - name: createscanprofile
              method: POST
              description: BigID Create A Scan Profile
              outputRawFormat: json
              outputParameters:
                - name: result
                  type: object
                  value: $.
              inputParameters:
                - name: body
                  in: body
                  type: object
                  required: true
        - name: scan-profiles-id
          path: /api/v1/scanProfiles/{id}
          operations:
            - name: getscanprofile
              method: GET
              description: BigID Get A Scan Profile
              outputRawFormat: json
              outputParameters:
                - name: result
                  type: object
                  value: $.
              inputParameters:
                - name: id
                  in: path
                  type: string
                  required: true
      authentication:
        type: bearer
        value: '{{env.BIGID_SYSTEM_TOKEN}}'
        placement: header
  exposes:
    - type: rest
      namespace: scans-profiles-rest
      port: 8080
      description: REST adapter for BigID Scan Profiles.
      resources:
        - path: /v1/scanProfiles
          name: scan-profiles
          description: REST surface for scan-profiles.
          operations:
            - method: POST
              name: createscanprofile
              description: BigID Create A Scan Profile
              call: scans-profiles.createscanprofile
              with:
                body: rest.body
              outputParameters:
                - type: object
                  mapping: $.
        - path: /v1/scanProfiles/{id}
          name: scan-profiles-id
          description: REST surface for scan-profiles-id.
          operations:
            - method: GET
              name: getscanprofile
              description: BigID Get A Scan Profile
              call: scans-profiles.getscanprofile
              with:
                id: rest.path.id
              outputParameters:
                - type: object
                  mapping: $.
    - type: mcp
      namespace: scans-profiles-mcp
      port: 9090
      transport: http
      description: MCP adapter for BigID Scan Profiles.
      tools:
        - name: bigid-create-scan-profile
          description: BigID Create A Scan Profile
          hints:
            readOnly: false
            destructive: false
            idempotent: false
          call: scans-profiles.createscanprofile
          with:
            body: tools.body
          outputParameters:
            - type: object
              mapping: $.
        - name: bigid-get-scan-profile
          description: BigID Get A Scan Profile
          hints:
            readOnly: true
            destructive: false
            idempotent: true
          call: scans-profiles.getscanprofile
          with:
            id: tools.id
          outputParameters:
            - type: object
              mapping: $.