Add ERLC Record
Create an ER:LC record.
Request Body
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 payload = {
["robloxJoinCode"] = "ABC123",
["executerDiscordId"] = "1234567890",
["type"] = "note",
["reason"] = "Example note",
["points"] = 0
}
local response = sonoran.cms:addErlcRecordV2(payload)
if response.success then
print(response.data)
else
print(response.reason)
endResponse
Last updated
Was this helpful?

