curl --request POST \
--url https://api.example.com/v1/users/initiate-registration \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"credential_type": "email",
"credential_value": "<string>",
"password": "<string>",
"terms_accepted": true,
"privacy_policy_accepted": true
}
'