---
title: "GET /api/application/{application_id}/integrations/"
method: GET
path: "/api/application/{application_id}/integrations/"
tags: ["Integrations"]
---

# GET /api/application/{application_id}/integrations/

`GET /api/application/{application_id}/integrations/`

Lists all the integrations of the application related to the provided parameter if the user has access to the related application's workspace. If the workspace is related to a template, then this endpoint will be publicly accessible.

## Path parameters

- `application_id` integer, required

## Response `200`

- IntegrationIntegration[]
  - union
    - LocalBaserowIntegrationIntegration — Basic integration serializer mostly for returned values.
      - `id` integer, required
      - `application_id` integer, required
      - `type` string, required — The type of the integration.
      - `name` string, required
      - `order` string, decimal, required — Lowest first.
      - `context_data` LocalBaserowContextData, required
        - `databases` LocalBaserowDatabaseApplication[], required
          - `id` integer, required
          - `name` string, required
          - `order` integer, required
          - `type` string, required
          - `workspace` Workspace, required
            - `id` integer, required
            - `name` string, required
            - `generative_ai_models_enabled` string, required
          - `created_on` string, date-time, required
          - `tables` LocalBaserowTable[], required — This field is specific to the `database` application and contains an array of tables that are in the database.
            - `id` integer, required
            - `database_id` integer, required
            - `name` string, required
            - `is_data_sync` boolean, required — Whether this table is a data synced table or not.
            - `is_two_way_data_sync` boolean, required — Whether this table is a two-way data synced table or not.
          - `views` LocalBaserowView[], required — This field is specific to the `database` application and contains an array of views that are in the tables.
            - `id` integer, required
            - `table_id` integer, required
            - `name` string, required
      - `authorized_user` SubjectUser, required
        - `id` integer, required
        - `username` string, required — Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only.
        - `first_name` string, required
        - `email` string, email, required
    - SMTPIntegrationIntegration — Basic integration serializer mostly for returned values.
      - `id` integer, required
      - `application_id` integer, required
      - `type` string, required — The type of the integration.
      - `name` string, required
      - `order` string, decimal, required — Lowest first.
      - `host` string, required — The SMTP server hostname or IP address.
      - `port` integer — The SMTP server port.
      - `use_tls` boolean — Whether to use TLS encryption.
      - `username` string, nullable — The SMTP username for authentication.
      - `password` string, nullable — The SMTP password for authentication.
    - AIIntegrationIntegration — Basic integration serializer mostly for returned values.
      - `id` integer, required
      - `application_id` integer, required
      - `type` string, required — The type of the integration.
      - `name` string, required
      - `order` string, decimal, required — Lowest first.
      - `ai_settings` unknown
    - SlackBotIntegrationIntegration — Basic integration serializer mostly for returned values.
      - `id` integer, required
      - `application_id` integer, required
      - `type` string, required — The type of the integration.
      - `name` string, required
      - `order` string, decimal, required — Lowest first.
      - `token` string, required — The Bot User OAuth Token listed in your Slack bot's OAuth & Permissions page.

## Other responses

- `404`

---

[API](https://skmtc.net/baserow/apis/baserow-api-spec.md) · [All operations](https://skmtc.net/baserow/apis/baserow-api-spec/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/baserow/baserow-api-spec/versions/0c490e5b0c7f/schema)
