curl --request POST \
--url https://app.telentir.com/api/auth/register \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"firstName": "<string>",
"lastName": "<string>",
"email": "[email protected]",
"phone": "<string>",
"password": "<string>",
"confirmPassword": "<string>",
"remember": true
}
'