LeanIX configurations API

The configurations API from LeanIX — 1 operation(s) for configurations.

Operations 3

GET /configurations #
PUT /configurations #
DELETE /configurations #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/leanix-configurations-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

leanix-configurations-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: 1.0.0
  title: Integration Configurations API
servers:
- url: /services/integration-api/v1
security:
- token: []
tags:
- name: configurations
paths:
  /configurations:
    get:
      description: Returns a list of available processor configurations
      tags:
      - configurations
      operationId: getProcessorConfigurations
      parameters:
      - $ref: '#/components/parameters/connectorType'
      - $ref: '#/components/parameters/connectorId'
      - $ref: '#/components/parameters/connectorVersion'
      - $ref: '#/components/parameters/processingDirection'
      - $ref: '#/components/parameters/processingMode'
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                type: array
                $ref: '#/components/schemas/ProcessorConfiguration'
        '403':
          description: The user is not allowed to use this endpoint.
    put:
      description: Inserts a new processor configuration or updates an existing one
      tags:
      - configurations
      operationId: upsertProcessorConfiguration
      responses:
        '204':
          description: Upsert successful.
        '403':
          description: The user is not allowed to use this endpoint.
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ProcessorConfiguration'
    delete:
      description: Delete a single processor configuration
      tags:
      - configurations
      operationId: deleteProcessorConfiguration
      parameters:
      - $ref: '#/components/parameters/connectorType'
      - $ref: '#/components/parameters/connectorId'
      - $ref: '#/components/parameters/connectorVersion'
      - $ref: '#/components/parameters/processingDirection'
      - $ref: '#/components/parameters/processingMode'
      responses:
        default:
          description: successful operation
        '400':
          description: Not all necessary fields are set in parameters.
        '403':
          description: The user is not allowed to use this endpoint.
        '404':
          description: No such processor configuration found.
        '422':
          description: Could not process the given processor configuration.
components:
  parameters:
    connectorType:
      name: connectorType
      description: The type of connector that is used
      in: query
      required: false
      schema:
        type: string
    connectorId:
      name: connectorId
      description: The identifier of the connector instance
      in: query
      required: false
      schema:
        type: string
    processingDirection:
      name: processingDirection
      description: The data flow direction, could be [inbound, outbound]
      in: query
      required: false
      schema:
        type: string
        enum:
        - inbound
        - outbound
    processingMode:
      name: processingMode
      description: The processing mode, could be [partial, full]
      in: query
      required: false
      schema:
        type: string
        enum:
        - partial
        - full
    connectorVersion:
      name: connectorVersion
      description: The version of the connector that is expected to process this LDIF file
      in: query
      required: false
      schema:
        type: string
  schemas:
    ProcessorConfiguration:
      type: object
      discriminator:
        propertyName: processingDirection
      required:
      - connectorType
      - connectorId
      - connectorVersion
      - processingDirection
      properties:
        connectorType:
          description: The type of connector that is used
          example: lxKubernetes
          type: string
        connectorId:
          description: The identifier of the connector instance
          example: Kub Dev-001
          type: string
        connectorVersion:
          description: The version of the connector that is expected to process this LDIF file
          example: 1.2.0
          type: string
        processingDirection:
          description: The data flow direction, could be [inbound, outbound]
          type: string
          example: inbound
        processingMode:
          description: The processing mode, could be [partial, full]
          type: string
          default: partial
          enum:
          - partial
          - full
        sequentialExecution:
          description: When set to true, all synchronizations runs processed by this processor configuration will be executed sequentially instead of in parallel.
          type: boolean
          default: false
  securitySchemes:
    token:
      type: oauth2
      flows:
        clientCredentials:
          scopes: {}
          tokenUrl: /services/mtm/v1/oauth2/token