Getting Started
REST API
REST API is meant to be used by your backend system for performing admin / management tasks
REST API has a rate limit of 100 req/s
For all POST and PUT endpoints with the exceptions of file uploads,
content-type
should beapplication/json
.If
content-type
header is missing, default value ofapplication/json
will be used.
All REST API requests require
app-id
andapi-key
in the header.To receive realtime messages, use TalkPlus SDK.
REST API Required Headers
Name
Value
api-key
YOUR_APP_API_KEY
app-id
YOUR_APP_ID
Last updated