Parameters
No parameters required
This endpoint takes no path, query, header or body parameters.
Returns every authorised shop__contact_login_identity row for the current user — browser sessions and AI-agent credentials both. API keys are excluded (external-integration credentials owned by the organisation, not personal seats). Powers the settings > security > active sessions grid; the currentSessionId field identifies which row belongs to the calling browser.
No parameters required
This endpoint takes no path, query, header or body parameters.
1 status code documented
itemCountnumberRequiredTotal number of active sessions returned.
currentSessionIdnumber | nullRequiredInternal id of the row backing the caller's current session, or null when the caller is not authenticated by a cookie.
itemsobject[]RequiredidnumberRequiredInternal id of the shop__contact_login_identity row (the only wire handle for logout).
kind"human" | "ai_agent"RequiredBrowser session vs. AI-agent credential provisioned via /bff/ai-agent/provision.
agentChildCountnumberRequiredCount of active AI-agent rows whose parent_identity_id points at this session. Always 0 for ai_agent rows themselves.
insertedDatestringRequiredISO datetime when the session was created (login or provisioning).
expirationDatestringRequiredISO datetime when the session will expire on its own (~3 months for humans, 30 days for agents).
lastActivityDatestring | nullRequiredISO datetime of the last request that used this identity, or null if never used.
devicestring | nullRequiredParsed device label from the User-Agent, if available.
userAgentstring | nullRequiredRaw User-Agent header captured at creation.
ipstringRequiredIP address at creation time (may be empty for legacy rows).
hostnamestring | nullRequiredReverse-DNS hostname of the IP.
citystring | nullRequiredCity resolved from GeoIP.
countrystring | nullRequiredISO country code resolved from GeoIP.
countryRegionstring | nullRequiredRegion/state resolved from GeoIP.
asnstring | nullRequiredASN of the network owning the IP.
asnOrganizationstring | nullRequiredASN owner organisation name.
ispstring | nullRequiredISP name from the GeoIP database.
mobilebooleanRequiredTrue if the IP belongs to a mobile carrier.
proxybooleanRequiredTrue if the IP is a known anonymising proxy.
hostingbooleanRequiredTrue if the IP belongs to a hosting/cloud provider.
torbooleanRequiredTrue if the IP is a known Tor exit node.
{
"itemCount": 0,
"items": [
{
"id": 0,
"agentChildCount": 0,
"insertedDate": "example_insertedDate",
"expirationDate": "example_expirationDate",
"ip": "example_ip",
"mobile": false,
"proxy": false,
"hosting": false,
"tor": false
}
]
}GET /bff/account/active-sessions
curl -X GET "https://api.bizkithub.com/bff/account/active-sessions" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"All BizKitHub public API endpoints require authentication via API key.