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
- Host: GitHub
- URL: https://github.com/jwc20/get-channel-talk
- Owner: jwc20
- Created: 2024-05-30T14:49:10.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-26T23:14:07.000Z (over 1 year ago)
- Last Synced: 2025-03-24T08:17:11.696Z (over 1 year ago)
- Topics: flask
- Language: Python
- Homepage:
- Size: 1.03 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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/).

## 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"
}
```