πPublic API
TSManage provides a public API for integrating its core management features with third-party apps and IoT devices.
When you make a request to TSManage using your API key, it's as though you are logged in and taking actions directly within the Management UI.
Required Permissions
Grant users a role with the "Manage API Keys" permission.

Once assigned, users can generate their own API keys.

Creating API Keys
Creating an API key is straightforward. Users will be shown their new API key once and must save it immediately, as it won't be retrievable later.

Basic Usage
Base URL: https://demo.tsmanage.com/public-api/v0/
The following headers are required in every request:
Content-Type: application/jsonAccept: application/json
Authentication
Follows RFC 6750 standards, using the API key as the bearer token for authentication.
Endpoints
Retrieve bulk TeamSpeak server member information by client unique identifiers
Example usage to return info on two members:
GET /members?id=XXXXX=&id=YYYYY=
Returns:
Bulk update server groups of TeamSpeak server members by client unique identifiers and server group IDs
Example usage to add and remove some server groups from three members:
PATCH /members/update-batch
Expects a body in the following schema:
Returns a result object with three properties: addedGroups, removedGroups, members. The added and removed groups keys contain the fully-resolved groups represented by the IDs originally passed into the serverGroupIdsToAdd and serverGroupIdsToRemove fields respectively. The members key contains an array of members that were affected by the request, with each member's new groups after the change.
Full working example:
Response example:
Last updated