POST
/auth/register
curl \
--request POST 'http://api.example.com/auth/register' \
--header "Authorization: $API_KEY" \
--header "Content-Type: application/json" \
--data '{"email":"admin@example.com","password":"string","password_2":"string","first_name":"string","last_name":"string"}'
Request examples
{
"email": "admin@example.com",
"password": "string",
"password_2": "string",
"first_name": "string",
"last_name": "string"
}