v50

latestOpenAPI 3.1.0Apache 2.0raw.githubusercontent.com2026-07-068428533.0 MB
Integration Instances

Get an Integration Instance

Fetches a integration instance.

get/v1/integration-instances/{id}

Response

A response containing a single integration instance object.

idstring uuid required

The integration instance ID.

namestring required

The machine name of the integration instance that uniquely identifies it within the catalog.

display_namestring required

The display name of the integration instance.

descriptionstring nullable required

The description of the integration instance.

authorizedboolean required

Denotes whether the integration instance has been authorized within the catalog.

labelsLabels

Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.

Keys must be of length 1-63 characters, and cannot start with "kong", "konnect", "mesh", "kic", or "_".

configIntegrationInstanceConfig required

JSON object representing configuration specific to the integration instance. The expected schema depends on the integration type and is dynamically registered at runtime.

created_atstring date-time required

An ISO-8601 timestamp representation of entity creation date.

updated_atstring date-time required

An ISO-8601 timestamp representation of entity update date.

Example response

{
  "id": "3f51fa25-310a-421d-bd1a-007f859021a3",
  "name": "aws-lambda-prod",
  "display_name": "AWS (prod)",
  "integration": {
    "name": "gateway-manager",
    "display_name": "gateway-manager"
  },
  "authorized": true,
  "labels": {
    "env": "test"
  },
  "config": {
    "account_region": "eu"
  },
  "created_at": "2022-11-04T20:10:06.927Z",
  "updated_at": "2022-11-04T20:10:06.927Z"
}