An open API service indexing awesome lists of open source software.

https://github.com/jwc20/get-channel-talk

A web app for fetching chat logs from Channel.io
https://github.com/jwc20/get-channel-talk

flask

Last synced: 2 months ago
JSON representation

A web app for fetching chat logs from Channel.io

Awesome Lists containing this project

README

          

# get channel talk 🚀

A simple application to view chat messages between managers and participants using the [channel.io open API](https://api-doc.channel.io/).

![Capture](capture.png)

## Endpoints

### GET /api/managers/{manager_id}/chats/{state}/{limit}/{sort_order}/{date}

```json
{
"chats": [
{
"chat_message": "Hello, world!",
"created_at": "2024-06-11 08:29:01",
"participant_id": "69420",
"participant_name": "John Doe",
}, ...
],
"count": 69,
"date": "2024-06-11",
"manager_id": "42069"
}
```