BigID · Capability

BigID Data Sources — Connector Templates

BigID Data Sources API — Connector Templates. 2 operations to list and fetch connector templates. Self-contained Naftiko capability covering one BigID business surface.

BigID Data Sources — Connector Templates 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 GET method rooted at /v1/ds-templates.

The capability includes 2 read-only operations. Lead operation: BigID List Connector Templates. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include BigID, Connectors, and Templates.

Run with Naftiko BigIDConnectorsTemplates

What You Can Do

GET
Listconnectortemplates — BigID List Connector Templates
/v1/ds-templates
GET
Getconnectortemplate — BigID Get A Connector Template
/v1/ds-templates/{type}

MCP Tools

bigid-list-connector-templates

BigID List Connector Templates

read-only idempotent
bigid-get-connector-template

BigID Get A Connector Template

read-only idempotent

Capability Spec

data-sources-templates.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: BigID Data Sources — Connector Templates
  description: 'BigID Data Sources API — Connector Templates. 2 operations to list and fetch connector templates.
    Self-contained Naftiko capability covering one BigID business surface.'
  tags:
    - BigID
    - Connectors
    - Templates
  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: data-sources-templates
      baseUri: '{{env.BIGID_BASE_URL}}'
      description: BigID Connector Templates business capability.
      resources:
        - name: ds-templates
          path: /api/v1/ds-templates
          operations:
            - name: listconnectortemplates
              method: GET
              description: BigID List Connector Templates
              outputRawFormat: json
              outputParameters:
                - name: result
                  type: object
                  value: $.
        - name: ds-templates-type
          path: /api/v1/ds-templates/{type}
          operations:
            - name: getconnectortemplate
              method: GET
              description: BigID Get A Connector Template
              outputRawFormat: json
              outputParameters:
                - name: result
                  type: object
                  value: $.
              inputParameters:
                - name: type
                  in: path
                  type: string
                  required: true
      authentication:
        type: bearer
        value: '{{env.BIGID_SYSTEM_TOKEN}}'
        placement: header
  exposes:
    - type: rest
      namespace: data-sources-templates-rest
      port: 8080
      description: REST adapter for BigID Connector Templates.
      resources:
        - path: /v1/ds-templates
          name: ds-templates
          description: REST surface for ds-templates.
          operations:
            - method: GET
              name: listconnectortemplates
              description: BigID List Connector Templates
              call: data-sources-templates.listconnectortemplates
              outputParameters:
                - type: object
                  mapping: $.
        - path: /v1/ds-templates/{type}
          name: ds-templates-type
          description: REST surface for ds-templates-type.
          operations:
            - method: GET
              name: getconnectortemplate
              description: BigID Get A Connector Template
              call: data-sources-templates.getconnectortemplate
              with:
                type: rest.path.type
              outputParameters:
                - type: object
                  mapping: $.
    - type: mcp
      namespace: data-sources-templates-mcp
      port: 9090
      transport: http
      description: MCP adapter for BigID Connector Templates.
      tools:
        - name: bigid-list-connector-templates
          description: BigID List Connector Templates
          hints:
            readOnly: true
            destructive: false
            idempotent: true
          call: data-sources-templates.listconnectortemplates
          outputParameters:
            - type: object
              mapping: $.
        - name: bigid-get-connector-template
          description: BigID Get A Connector Template
          hints:
            readOnly: true
            destructive: false
            idempotent: true
          call: data-sources-templates.getconnectortemplate
          with:
            type: tools.type
          outputParameters:
            - type: object
              mapping: $.