List user activation
GET
/api/admin/system/activation
const url = 'https://hitkeep.com/api/admin/system/activation?status=waiting';const options = {method: 'GET', headers: {cookie: 'hk_token=<hk_token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://hitkeep.com/api/admin/system/activation?status=waiting' \ --cookie hk_token=<hk_token>Owner-only operational activation view for teams and sites. Returns setup status, aggregate hit/event counts, owner email, plan, and timestamps without visitor-level details.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ” status
string
team
string
domain
string
last_seen_from
string format: date-time
last_seen_to
string format: date-time
limit
integer
offset
integer
Responses
Section titled “ Responses ”Activation rows
Media type application/json
object
has_more
boolean
limit
integer
offset
integer
rows
Array<object>
object
active_sites
integer
cloud_region
string
events_last_7d
integer
first_hit_at
string format: date-time
hits_last_24h
integer
hits_last_7d
integer
last_event_at
string format: date-time
last_event_name
string
last_hit_at
string format: date-time
owner_email
string format: email
plan_code
string
plan_name
string
site_domain
string
site_id
string format: uuid
sites_count
integer
status
string
team_id
string format: uuid
team_name
string
tracker_source
string
tracker_version
string
total
integer
Example
{ "rows": [ { "status": "waiting" } ]}Invalid activation filter
Media type application/json
object
message
string
Example generated
{ "message": "example"}Forbidden
Media type application/json
object
message
string
Example generated
{ "message": "example"}