---
title: "List channels: GET /integrations | Posty dokumentáció"
description: "A bekötött csatornák: azonosító, név, @handle, platform, és hogy tud-e most posztolni."
canonical: https://posty.hu/en/docs/api/endpoints/csatornak
source: https://posty.hu/en/docs/api/endpoints/csatornak.md
---

Channels

# List channels: GET /integrations

A bekötött csatornák: azonosító, név, @handle, platform, és hogy tud-e most posztolni.

## Path

Method and path

GEThttps://api.posty.hu/public/v1/integrations

Authorization

`channels:read`

operationId

`listChannels`

The workspace's connected channels: ID, name, @handle, platform, profile picture, and whether the channel can post right now.

Every other call asks for the ID you get back by this name: \`integration.id\`.

## Parameters

| Name | Location | Type | Required | Description |
| --- | --- | --- | --- | --- |
| group | lekérdezés | string | no | Returns only the channels of one client group. The group ID comes from the /groups endpoint. |

## Request

```
curl https://api.posty.hu/public/v1/integrations \
  -H "Authorization: psty_a_kulcsod"
```

Kód másolása

## Response

Example response structure. The [OpenAPI document](https://posty.hu/openapi.json) contains the authoritative schema for each field.

```
[
  {
    "id": "clx1a2b3c4d5e6f7g8h9",
    "name": "Posty",
    "identifier": "x",
    "picture": "https://.../avatar.png",
    "disabled": false,
    "profile": "posty_hu",
    "customer": null
  }
]
```

Kód másolása

## Important

- If the key is limited to a channel, the list arrives filtered, not as a 403: a calendar sync must not stop because the workspace gained a new channel.

## Related

- [Authentication](https://posty.hu/en/docs/api/authentication): API key and scopes.
- [Errors and limits](https://posty.hu/en/docs/api/errors): error responses and rate limits.
- [All endpoints](https://posty.hu/en/docs/api/endpoints): full list.

Documentation pages

Is something missing from this page? Email [norbert@posty.hu](mailto:norbert@posty.hu) or use the form on the [Help](https://posty.hu/en/help) page.
