curl --request POST \
--url https://api.easierprop.com/admin/seed \
--header 'Content-Type: application/json' \
--data '
{
"username": "superadmin",
"password": "s3cret"
}
'{
"ok": true,
"data": {}
}Create the first superadmin account. This endpoint only works once and will fail if a superadmin already exists.
curl --request POST \
--url https://api.easierprop.com/admin/seed \
--header 'Content-Type: application/json' \
--data '
{
"username": "superadmin",
"password": "s3cret"
}
'{
"ok": true,
"data": {}
}