Polarity API Docs
  1. Onboarding Routes
Polarity API Docs
  • Auth Routes
    • Signup
      POST
    • Login
      POST
    • Get Current User (Protected Routes Access)
      GET
    • Token Expiry Refresh
      POST
    • Logout
      POST
  • Onboarding Routes
    • Onboarding Status
      GET
    • Update User Onboarding Data Per Step
      POST
    • Onboarding Completed
      GET
    • Reset Onboarding
      GET
  1. Onboarding Routes

Onboarding Completed

Developing
GET
/onboarding/complete
Marks onboarding process as complete for the user
1.
JWT auth
2.
Checks if all required fields/data from onboarding is present
3.
Sets onboarding_complete to True and step to 5
4.
Commit change to db
Frontend interaction:
Frontend will call this endpoint after all steps done to ensure onboarding finalized
If not all fields complete, frontend should prompt user to finish missing steps (Future: Specify which steps are missing **)
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/onboarding/complete'
Response Response Example
{}

Request

None

Responses

🟢200Success
application/json
Body
object {0}
Modified at 2025-06-20 16:16:40
Previous
Update User Onboarding Data Per Step
Next
Reset Onboarding
Built with