Keboola Migrate API

The Migrate API from Keboola — 1 operation(s) for migrate.

Operations 1

POST /migrate-configuration Migrate configuration #

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/keboola-migrate-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

keboola-migrate-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Encryption Migrate API
  version: ''
  description: 'Encryption is part of the [Job Runner](https://developers.keboola.com/extend/docker-runner/) component. Job Runner

    is a Keboola service, that runs configurations of components as Keboola Connection jobs.'
servers:
- url: https://encryption.{stack}
  variables:
    stack:
      enum:
      - keboola.com
      - eu-central-1.keboola.com
      - north-europe.azure.keboola.com
      - europe-west2.gcp.keboola.com
      - europe-west3.gcp.keboola.com
      - us-east4.gcp.keboola.com
      - eu-west-1.aws.keboola.dev
      - east-us-2.azure.keboola-testing.com
      - us-central1.gcp.keboola.dev
      default: keboola.com
- url: http://localhost:8080
tags:
- name: Migrate
paths:
  /migrate-configuration:
    post:
      summary: Migrate configuration
      operationId: migrateConfiguration
      tags:
      - Migrate
      description: 'Migrates configuration from the source to the destination project.

        Every encrypted key is decrypted and re-encrypted for the destination stack.

        '
      security:
      - configMigration: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MigrateConfigurationPayload'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MigrateConfigurationSucceeded'
        '400':
          $ref: '#/components/responses/400_BadRequest'
        '401':
          $ref: '#/components/responses/401_Unauthorized'
        '404':
          $ref: '#/components/responses/404_NotFound'
        '422':
          $ref: '#/components/responses/422_UnprocessableEntity'
components:
  schemas:
    Error:
      type: object
      required:
      - error
      - code
      - exceptionId
      - status
      properties:
        error:
          type: string
        code:
          type: integer
        exceptionId:
          type: string
        status:
          enum:
          - error
        context:
          type: object
    MigrateConfigurationPayload:
      type: object
      required:
      - sourceStorageApiToken
      - destinationStack
      - destinationStorageApiToken
      - componentId
      - configId
      - branchId
      properties:
        sourceStorageApiToken:
          type: string
          description: Storage API token for source stack
        destinationStack:
          enum:
          - connection.europe-west3.gcp.keboola.com
          - connection.us-east4.gcp.keboola.com
          - connection.europe-west2.gcp.keboola.com
          - connection.us-central1.gcp.keboola.dev
        destinationStorageApiToken:
          type: string
          description: Storage API token for destination stack
        componentId:
          type: string
          description: Component ID to migrate
        configId:
          type: string
          description: Configuration ID to migrate
        branchId:
          type: string
          description: Branch ID to migrate from
    MigrateConfigurationSucceeded:
      type: object
      items:
        type: string
      properties:
        message:
          type: string
        data:
          type: object
          properties:
            destinationStack:
              type: string
            componentId:
              type: string
            configId:
              type: string
            branchId:
              type: string
        warnings:
          items:
            type: string
      example:
        message: Configuration with ID "123" successfully migrated to stack "us-east4.gcp.keboola.com".
        data:
          destinationStack: us-east4.gcp.keboola.com
          componentId: keboola.ex-gcalendar
          configId: '123'
          branchId: '1'
        warnings:
        - Cannot migrate OAuth credentials of component "keboola.ex-gcalendar".
  responses:
    404_NotFound:
      description: Forbidden
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    422_UnprocessableEntity:
      description: Unprocessable entity
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    401_Unauthorized:
      description: Unauthorized
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    400_BadRequest:
      description: Bad request
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    configMigration:
      type: apiKey
      in: header
      name: X-KBC-ManageApiToken
      description: Assigned user must have `can-migrate-secrets` feature