Activity Tracker
Record a server activity event.
Last updated
Was this helpful?
Was this helpful?
local Sonoran = require("sonoran")
local sonoran = Sonoran.createClient({
product = Sonoran.productEnums.CMS,
apiKey = "YOUR_API_KEY",
communityId = "YOUR_COMMUNITY_ID",
defaultServerId = 1,
timeoutMs = 30000,
})
local serverId = 1
local payload = {
["accId"] = "00000000-0000-0000-0000-000000000000",
["forceStart"] = true
}
local response = sonoran.cms:createActivityV2(serverId, payload)
if response.success then
print(response.data)
else
print(response.reason)
endconst Sonoran = require("sonoran.js");
const instance = Sonoran.instance({
apiKey: "YOUR_API_KEY",
communityId: "YOUR_COMMUNITY_ID",
product: Sonoran.productEnums.CMS,
serverId: 1,
});
async function main() {
const serverId = 1;
const payload = {
"accId": "00000000-0000-0000-0000-000000000000",
"forceStart": true
};
const response = await instance.cms.createActivityV2(serverId, payload);
if (response.success) {
console.log(response.data);
} else {
console.error(response.reason);
}
}
main().catch((error) => {
console.error(error);
});from sonoran import Instance, productEnums
instance = Instance(
apiKey="YOUR_API_KEY",
communityId="YOUR_COMMUNITY_ID",
product=productEnums.CMS,
serverId=1,
)
serverId = 1
payload = {
"accId": "00000000-0000-0000-0000-000000000000",
"forceStart": True
}
response = instance.cms.createActivityV2(serverId, payload)
if response.success:
print(response.data)
else:
print(response.reason)using Sonoran;
using System.Text.Json;
using var sonoran = new SonoranClient(new SonoranClientOptions
{
product = SonoranProduct.CMS,
apiKey = "YOUR_API_KEY",
communityId = "YOUR_COMMUNITY_ID",
defaultServerId = 1
});
var serverId = 1;
var payload = new {
accId = "00000000-0000-0000-0000-000000000000",
forceStart = true
};
var response = await sonoran.Cms.createActivityV2(serverId, payload);
if (response.success)
{
Console.WriteLine(JsonSerializer.Serialize(response.data));
}
else
{
Console.WriteLine(response.reason);
}openapi: "3.0.3"
info:
title: "Sonoran CMS v2 - Activity Tracker"
version: "1.0.0"
description: "Record a server activity event."
servers:
-
url: "https://api.sonorancms.com"
paths:
/v2/community/servers/{serverId}/activity:
post:
summary: "Activity Tracker"
operationId: "activityTracker"
parameters:
-
description: "Target server id."
name: "serverId"
in: "path"
schema:
type: "integer"
required: true
requestBody:
required: true
content:
application/json:
schema:
type: "object"
security:
-
bearerAuth: []
responses:
"200":
description: "Successful response"
content:
application/json:
schema:
type: "object"
example:
success: true
data:
id: "55555555-5555-5555-5555-555555555555"
status: true
accId: "00000000-0000-0000-0000-000000000000"
serverId: 1
start: "2026-04-15T00:00:00.000Z"
end: null
clearReason: null
metadata: {}
meta:
timestamp: "2026-04-15T00:00:00.000Z"
path: "/v2/community/servers/1/activity"
components:
securitySchemes:
bearerAuth:
type: "http"
scheme: "bearer"
bearerFormat: "JWT"curl --request POST \
--url "https://api.sonorancms.com/v2/community/servers/1/activity" \
--header "Authorization: Bearer YOUR_API_KEY" \
--header "Accept: application/json" \
--data '{"accId":"00000000-0000-0000-0000-000000000000","forceStart":true}'
{
"success": true,
"data": {
"id": "55555555-5555-5555-5555-555555555555",
"status": true,
"accId": "00000000-0000-0000-0000-000000000000",
"serverId": 1,
"start": "2026-04-15T00:00:00.000Z",
"end": null,
"clearReason": null,
"metadata": {}
},
"meta": {
"timestamp": "2026-04-15T00:00:00.000Z",
"path": "/v2/community/servers/1/activity"
}
}