Skip to main content

Getting Started

The LiveOps features is provided in API format so that the data in the chat server can be managed directly. If a separate operation dashboard is established, the Platform API can be directly linked to manage the game more effectively.
The provided API uses the standard HTTP protocol and returns a JSON payload as a response to the HTTP request.

info

Platform API is not a client-side function. In order to implement client functions, use SDK.

How to use Chat API

Base URL

Send an API request to the following URL.

https://platformapi.thebackend.io/chat/v1

Headers

General HTTP requests regarding all APIs contain the following header.
Authenticate requests with Master API Tokens and ensure that permission to interact with the data exists. You can check the token value in the BACKND Console.

Content-Type: application/json; charset=utf8
Authorization: Bearer YOUR_MASTER_TOKEN

Request

The following is an example of an API request. This request returns a JSON payload containing a list of open channel groups.

curl -X GET https://platformapi.thebackend.io/chat/v1/open_channel_groups \
-H "Authorization: Bearer YOUR_MASTER_TOKEN" \
-H "Content-Type: application/json; charset=utf8" \

For details on all features that can be used and the endpoint, please refer to the API documentation that follows.