Skip to main content
POST
/
user
Create a user account
curl --request POST \
  --url https://app.myhero.so/user \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "jsmith@example.com",
  "password": "<string>",
  "couponCode": "<string>",
  "invitationId": "<string>"
}
'
{
  "data": "<unknown>"
}

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.

Creates a new Firebase and database user record from the provided email and password. Returns the Firebase user record. An optional invitationId links the account to a pending invitation.

Authorizations

Authorization
string
header
required

HERO personal access token

Body

application/json
email
string<email>
required
password
string
required
Minimum string length: 1
couponCode
string
invitationId
string

Response

200 response

data
any