Get Current Clock In
Retrieve the current clock-in state for an account.
Route Parameters
Query Parameters
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 accountId = "00000000-0000-0000-0000-000000000000"
local query = {
["accId"] = "00000000-0000-0000-0000-000000000000"
}
local response = sonoran.cms:getCurrentClockInV2(accountId, query)
if response.success then
print(response.data)
else
print(response.reason)
endResponse
Last updated
Was this helpful?

