---
title: "Controller Handle Introspect Connection Id"
method: POST
path: "/integrations/introspect/connection_id/{connection_id}"
tags: ["integrations"]
---

# Controller Handle Introspect Connection Id

`POST /integrations/introspect/connection_id/{connection_id}`

Introspects a preexisting connection (specified by id), returning a list of all tables present in that connection. This is useful for reusing connection information, which otherwise would need to retrieve full connection information in the frontend (not a pattern we want to encourage).

## Path parameters

- `connection_id` string, required

## Response `200`

Successful Response

- Table[]
  - `name` string, required — Name of the table.
  - `schema` string, nullable — Schema of the table. Only provided for sources that have some concept of a 'wrapper' schema.
  - `columns` Column[], required — List of columns in the table.
    - `name` string, required — Name of the column.

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/akk/apis/fastapi.md) · [All operations](https://skmtc.net/akk/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/akk/fastapi/revisions/6662a407c637/schema)
