CRMchat APIBeta
Telegram APIChatlists

chatlists.getExportedInvites

POST
/workspaces/{workspaceId}/telegram-accounts/{accountId}/call/chatlists.getExportedInvites

List all chat folder deep links » associated to a folder

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Path Parameters

workspaceId*string

Workspace ID

accountId*string

Telegram account ID

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

params*

List all chat folder deep links » associated to a folder

Response Body

application/json

application/json

curl -X POST "https://example.com/workspaces/string/telegram-accounts/string/call/chatlists.getExportedInvites" \  -H "Content-Type: application/json" \  -d '{    "params": {      "chatlist": {        "_": "inputChatlistDialogFilter",        "filterId": 0      }    }  }'
{  "result": {    "_": "chatlists.exportedInvites",    "invites": [      {        "_": "exportedChatlistInvite",        "title": "string",        "url": "string",        "peers": [          {            "_": "peerUser",            "userId": 0          }        ]      }    ],    "chats": [      {        "_": "chatEmpty",        "id": 0      }    ],    "users": [      {        "_": "userEmpty",        "id": 0      }    ]  }}