Keboola Resolve Config Variables API

The Resolve Config Variables API from Keboola — 1 operation(s) for resolve config variables.

Operations 1

POST /resolve-config-variables Compile configuration with resolved shared codes and config variables

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-resolve-config-variables-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-resolve-config-variables-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: The API allows to run Synchronous actions on components.
  version: 1.1.0
  title: Synchronous Actions Resolve Config Variables API
  contact:
    email: devel@keboola.com
  license:
    name: MIT
    url: https://opensource.org/licenses/MIT
servers:
- description: SwaggerHub API Auto Mocking
  url: https://virtserver.swaggerhub.com/odinuv/sync-actions/1.0.0
- description: Azure Testing
  url: https://sync-actions.east-us-2.azure.keboola-testing.com
- description: US AWS Production
  url: https://sync-actions.keboola.com
- description: EU AWS Production
  url: https://sync-actions.eu-central-1.keboola.com
security:
- ApiKeyAuth: []
tags:
- name: Resolve Config Variables
paths:
  /resolve-config-variables:
    post:
      summary: Compile configuration with resolved shared codes and config variables
      requestBody:
        content:
          application/json:
            schema:
              type: object
              required:
              - configData
              properties:
                configData:
                  description: 'Configuration data for the component.

                    '
                  type: object
                  example:
                    parameters:
                      foo: bar
                branchId:
                  type: string
                  example: '1234'
                  description: 'ID of the development branch. When empty the main branch is used.

                    '
            examples:
              Compile configuration with configuration variables:
                value:
                  configData:
                    variables_id: '123'
                    variables_values_id: '456'
                    parameteres:
                      something_with_variable: '{{foo}} is bar'
              Compile configuration with shared codes:
                value:
                  configData:
                    shared_code_id: '987'
                    shared_code_row_ids:
                    - '654'
                    parameteres:
                      something_with_shared_code:
                      - 'Query: {{first_code}}'
              Compile configuration on branch with shared codes and config variables:
                value:
                  configData:
                    variables_id: '123'
                    variables_values_id: '456'
                    shared_code_id: '987'
                    shared_code_row_ids:
                    - '654'
                    parameteres:
                      something_with_variable: '{{foo}} is bar'
                      something_with_shared_code:
                      - 'Query: {{first_code}}'
                  branchId: '1234'
      responses:
        '200':
          description: Configuration compiled
          content:
            application/json:
              schema:
                type: object
                example:
                  parameteres:
                    something_with_variable: bar is bar
                    something_with_shared_code:
                    - 'Query: SELECT * FROM "my-table"'
        default:
          description: Error response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      tags:
      - Resolve Config Variables
components:
  schemas:
    Error:
      type: object
      required:
      - error
      - code
      - status
      - context
      properties:
        error:
          type: string
          example: The value foobar is invalid
        code:
          type: integer
          example: 400
        status:
          type: string
          enum:
          - error
        exceptionId:
          type: string
          example: exception-1234567890
        context:
          type: object
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-StorageApi-Token