Logik.io Blueprint > Import API

Import Blueprints

Operations 2

POST /api/admin/v2/uploadFile Upload a blueprint zip file
GET /api/admin/v1/job/{jobId} Retrieve job details by ID

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/logikio-blueprint-import-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

logikio-blueprint-import-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Logik.io Admin API - Blueprint Import/Export Blueprint > Import API
  description: APIs with which to import and export Logik.io Blueprints. Useful for taking backups and executing migrations among environments.
  version: 1.0.0
  contact:
    email: support@logik.io
servers:
- url: https://{tenant}.{sector}.logik.io
  description: Logik Environment
  variables:
    tenant:
      default: example
      description: Logik.io tenant
    sector:
      default: test
      description: Logik.io sector
security:
- bearerAuth: []
tags:
- name: Blueprint > Import
  description: Import Blueprints
paths:
  /api/admin/v2/uploadFile:
    post:
      tags:
      - Blueprint > Import
      summary: Upload a blueprint zip file
      description: Upload a file using multipart/form-data
      requestBody:
        content:
          multipart/form-data:
            schema:
              required:
              - file
              - jobType
              properties:
                jobType:
                  type: string
                  description: Type of job
                  enum:
                  - GENERIC_IMPORT
                file:
                  type: string
                  description: Binary file data
                  format: binary
        required: true
      responses:
        200:
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  created:
                    type: string
                    format: date-time
                  modified:
                    type: string
                    format: date-time
                  id:
                    type: integer
                  jobType:
                    type: string
                  status:
                    type: string
                    enum:
                    - STARTED
                    - COMPLETED
                    - FAILED
  /api/admin/v1/job/{jobId}:
    get:
      summary: Retrieve job details by ID
      description: Retrieve details of a job by providing its ID.
      tags:
      - Blueprint > Import
      parameters:
      - name: jobId
        in: path
        description: Id of the job
        required: true
        schema:
          type: integer
      responses:
        200:
          description: Job details
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: integer
                  started:
                    type: string
                    format: date-time
                  finished:
                    type: string
                    format: date-time
                  jobType:
                    type: string
                  status:
                    type: string
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Admin API Bearer Token