Get onboarding checklist
GET
/api/user/onboarding
const url = 'https://hitkeep.com/api/user/onboarding';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/user/onboarding \ --cookie hk_token=<hk_token>Returns an onboarding checklist computed from sites, tracking status, team membership, and report subscription state.
Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”Onboarding state
Media type application/json
object
complete
boolean
dismissed
boolean
steps
Array<object>
object
complete
boolean
current
integer
key
string
site_domain
string
site_id
string format: uuid
target
integer
Example
{ "steps": [ { "key": "create_site" } ]}