All URIs are relative to https://localhost/api/v1
Method | HTTP request | Description |
---|---|---|
ChatGet | Get /chat | Get chat messages. |
ChatGetChannels | Get /chat/channels | Get available channels. |
ChatGetConnected | Get /chat/connected | Get connected users. |
ChatNew | Post /chat | Send a chat message. |
[]Chat ChatGet($count, $start, $reverse, $channelID)
Get chat messages.
Name | Type | Description | Notes |
---|---|---|---|
count | float32 | Number of results to fetch. | [optional] [default to 100] |
start | float32 | Starting point for results. | [optional] [default to 0] |
reverse | bool | If true, will sort results newest first. | [optional] [default to true] |
channelID | float64 | Channel id. GET /chat/channels for ids. Leave blank for all. | [optional] |
No authorization required
- Content-Type: application/json, application/x-www-form-urlencoded
- Accept: application/json, application/xml, text/xml, application/javascript, text/javascript
[Back to top] [Back to API list] [Back to Model list] [Back to README]
[]ChatChannel ChatGetChannels()
Get available channels.
This endpoint does not need any parameter.
No authorization required
- Content-Type: application/json, application/x-www-form-urlencoded
- Accept: application/json, application/xml, text/xml, application/javascript, text/javascript
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ConnectedUsers ChatGetConnected()
Get connected users.
Returns an array with browser users in the first position and API users (bots) in the second position.
This endpoint does not need any parameter.
No authorization required
- Content-Type: application/json, application/x-www-form-urlencoded
- Accept: application/json, application/xml, text/xml, application/javascript, text/javascript
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Chat ChatNew($message, $channelID)
Send a chat message.
Name | Type | Description | Notes |
---|---|---|---|
message | string | ||
channelID | float64 | Channel to post to. Default 1 (English). | [optional] [default to 1] |
No authorization required
- Content-Type: application/json, application/x-www-form-urlencoded
- Accept: application/json, application/xml, text/xml, application/javascript, text/javascript
[Back to top] [Back to API list] [Back to Model list] [Back to README]