---
title: "List OAuth Connections"
method: GET
path: "/oauth_connections"
---

# List OAuth Connections

`GET /oauth_connections`

## Query parameters

- `cursor` string — Return the page of entries after this one.
- `limit` integer — Limit the size of the list that is returned. The default (and maximum) is 100 objects.
- `status.in` string[] — Filter to OAuth Connections by their status. By default, return only the `active` ones. For GET requests, this should be encoded as a comma-delimited string, such as `?in=one,two,three`.
- `oauth_application_id` string — Filter results to only include OAuth Connections for a specific OAuth Application.

## Response `200`

OAuth Connection List

- OauthConnectionList — A list of OAuth Connection objects.
  - `data` OauthConnection[], required — The contents of the list.
    - `created_at` string, date-time, required — The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp when the OAuth Connection was created.
    - `deleted_at` string, date-time, nullable, required — The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp when the OAuth Connection was deleted.
    - `group_id` string, required — The identifier of the Group that has authorized your OAuth application.
    - `id` string, required — The OAuth Connection's identifier.
    - `oauth_application_id` string, required — The identifier of the OAuth application this connection is for.
    - `status` 'active' | 'inactive', required — Whether the connection is active.
    - `type` 'oauth_connection', required — A constant representing the object's type. For this resource it will always be `oauth_connection`.
  - `next_cursor` string, nullable, required — A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next page of results. If there are no more results, the value will be `null`.

## Other responses

- `4XX` — Error
- `5XX` — Error

---

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