---
title: "Get Connections"
method: GET
path: "/v1/accounts/{account_id}/environments/{environment_id}/connections"
tags: ["Connections", "MCP"]
---

# Get Connections

`GET /v1/accounts/{account_id}/environments/{environment_id}/connections`

**Authorization scope:** `connection:list` 
 
 **Get all connection entities as a paginated list**

---

### 📖 Instructions for usage

`list_connections`

```
List all connections in an environment (sweeps every page in one call).

Returns {items, total_items, page, has_next}. Each item includes connection_name,
connection_type, connection_type_id, and cross_id; use cross_id as connection_id
when creating data flows. If the upstream 500s on a specific page, that page is
skipped and its number is reported under "incomplete_pages" rather than failing
the whole listing.
```

## Path parameters

- `account_id` string, required
- `environment_id` string, required

## Query parameters

- `items_per_page` integer — The number of items per page in the paginated list.
- `page` integer — The current page number in the paginated list.

## Response `200`

Successful Response

- ConnectionPaginationResponse — Connection response properties to return as a paginated list
  - `next_page` string, nullable — The next page URL
  - `previous_page` string, nullable — The previous page URL
  - `page` integer — The page number
  - `current_page_size` integer, required — The current page size
  - `total_items` integer — The total number of entities fetched
  - `account_id` string, required — The account id
  - `environment_id` string, required — The environment id
  - `items` ConnectionResponse[], required
    - `account_id` string, required
    - `environment_id` string, required
    - `cross_id` string, required — The cross id of the connection
    - `_id` string, required — The connection id
    - `connection_name` string, required — The name of the connection
    - `connection_type` string, required — The type of the connection
    - `connection_type_id` string, required — The name of the related database
    - `is_test_connection` boolean, required — Indicates if the connection is a test connection
    - `connection_update_by` string, nullable — The objectID of the user who updated the connection
    - `connection_update_time` string, date-time, nullable — The time the connection was last updated

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/rivery/apis/boomi-data-integration-api.md) · [All operations](https://skmtc.net/rivery/apis/boomi-data-integration-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/rivery/boomi-data-integration-api/revisions/cd4c91e0e6c2/schema)
