FusionAuth · Capability

FusionAuth API — Integration

FusionAuth API — Integration. 2 operations. Lead operation: Updates, via PATCH, the available integrations.. Self-contained Naftiko capability covering one business surface.

FusionAuth API — Integration is a Naftiko capability published by FusionAuth, one of 33 capabilities the APIs.io network indexes for this provider. It bundles 2 operations across the PATCH and PUT methods rooted at /v1/api/integration.

The capability includes 2 state-changing operations. Lead operation: Updates, via PATCH, the available integrations. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include FusionAuth and Integration.

Run with Naftiko FusionAuthIntegration

What You Can Do

PATCH
Patchintegrationswithid — Updates, via PATCH, the available integrations.
/v1/api/integration
PUT
Updateintegrationswithid — Updates the available integrations.
/v1/api/integration

MCP Tools

fusionauth-patchintegrationswithid

Updates, via PATCH, the available integrations.

fusionauth-updateintegrationswithid

Updates the available integrations.

idempotent

Capability Spec

fusionauth-integration.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: FusionAuth API — Integration
  description: 'FusionAuth API — Integration. 2 operations. Lead operation: Updates, via PATCH, the available integrations.. Self-contained Naftiko capability covering one business surface.'
  tags:
  - FusionAuth
  - Integration
  created: '2026-05-20'
  modified: '2026-05-20'
binds:
- namespace: env
  keys:
    FUSIONAUTH_API_KEY: FUSIONAUTH_API_KEY
capability:
  consumes:
  - type: http
    namespace: fusionauth-integration
    baseUri: http://localhost:9011
    description: FusionAuth API — Integration business capability. Self-contained, no shared references.
    resources:
    - name: api-integration
      path: /api/integration
      operations:
      - name: patchintegrationswithid
        method: PATCH
        description: Updates, via PATCH, the available integrations.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: updateintegrationswithid
        method: PUT
        description: Updates the available integrations.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
  exposes:
  - type: rest
    namespace: fusionauth-integration-rest
    port: 8080
    description: REST adapter for FusionAuth API — Integration. One resource per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/api/integration
      name: api-integration
      description: REST surface for api-integration.
      operations:
      - method: PATCH
        name: patchintegrationswithid
        description: Updates, via PATCH, the available integrations.
        call: fusionauth-integration.patchintegrationswithid
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updateintegrationswithid
        description: Updates the available integrations.
        call: fusionauth-integration.updateintegrationswithid
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: fusionauth-integration-mcp
    port: 9090
    transport: http
    description: MCP adapter for FusionAuth API — Integration. One tool per consumed operation, routed inline through this capability's consumes block.
    tools:
    - name: fusionauth-patchintegrationswithid
      description: Updates, via PATCH, the available integrations.
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: fusionauth-integration.patchintegrationswithid
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: fusionauth-updateintegrationswithid
      description: Updates the available integrations.
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: fusionauth-integration.updateintegrationswithid
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.