Get Custom Log Types

Retrieve the configured custom log types.

GET https://api.sonorancms.com/v2/community/custom-log-types

Rate limit: 13 requests per minute

Authenticated v2 endpoints are rate limited per credential rather than per IP address.

Retrieve the configured custom log types.

Example Request

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 response = sonoran.cms:getCustomLogTypesV2()

if response.success then
  print(response.data)
else
  print(response.reason)
end

Response

The data array contains the configured custom log types used by ERLC and disciplinary integrations.

Last updated

Was this helpful?