Skip to content
Start in Cloud

Create initial admin

POST
/api/initial-user
curl --request POST \
--url https://hitkeep.com/api/initial-user \
--header 'Content-Type: application/json' \
--data '{ "email": "hello@example.com", "given_name": "example", "last_name": "example", "password": "example" }'

Bootstraps first user account during setup.

Media type application/json
object
email
required
string format: email
given_name
string
last_name
string
password
required
string
>= 8 characters
Example generated
{
"email": "hello@example.com",
"given_name": "example",
"last_name": "example",
"password": "example"
}

Token created

Media type application/json
object
token
string
Example generated
{
"token": "example"
}

Setup already complete

Media type application/json
object
message
string
Example generated
{
"message": "example"
}