Skip to main content
POST
/
user
/
setup
/
default
Complete user onboarding
curl --request POST \
  --url https://app.myhero.so/user/setup/default \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "firstName": "<string>",
  "lastName": "<string>",
  "avatarId": "<string>",
  "theme": "<string>",
  "tags": [
    "<string>"
  ],
  "templateIds": [
    "<string>"
  ],
  "emails": [
    "jsmith@example.com"
  ],
  "invitationId": "<string>"
}
'
{
  "data": {
    "success": true,
    "redirect": "<string>",
    "message": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://developers.myhero.so/llms.txt

Use this file to discover all available pages before exploring further.

Finalizes account setup for a newly registered user: creates a default organization and workspace, provisions a Stripe customer and billing seat, applies any early-bird coupon, and optionally seeds template projects and sends invitation emails. Returns a redirect URL pointing to /home, /plans, or an invite-accept page.

Authorizations

Authorization
string
header
required

HERO personal access token

Body

application/json
firstName
string
required
Minimum string length: 1
lastName
string
avatarId
string
theme
string
tags
string[]
templateIds
string[]
emails
string<email>[]
invitationId
string

Response

200 response

data
object
required