Update onboarding tutorial progress
Update onboarding tutorial progress
Pass either a single page_id + last_seen_id pair, or skipp_all_arr to mark multiple pages at once.
POST
Update onboarding tutorial progress
Authorizations
JWT Bearer token authentication. Use the /api/login endpoint to obtain a token.
Body
application/json
Page identifier (used with last_seen_id)
Example:
"My-Jobs"
Last seen step/item ID within the page
Example:
"1"
Bulk update: array of {page_id, last_seen_id} objects (alternative to single pair). Example: [{page_id:'My-profile', last_seen_id:'4'}, {page_id:'My-Jobs', last_seen_id:'2'}]
Example:
[
{
"page_id": "My-profile",
"last_seen_id": "4"
},
{ "page_id": "My-Jobs", "last_seen_id": "2" }
]Response
200
Tutorial progress updated