Authorization: Bearer ********************{
"email": "john.doe@example.com",
"emailConfirmation": "john.doe@example.com",
"firstName": "John",
"lastName": "Doe",
"otherName": "Robert",
"phoneNumber": "+1234567890",
"gender": "Male",
"dob": "1990-01-15",
"countryId": 1,
"password": "Password123!",
"confirmPassword": "Password123!"
}curl --location 'http://localhost:3000/api/v1/msd/register' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"email": "john.doe@example.com",
"emailConfirmation": "john.doe@example.com",
"firstName": "John",
"lastName": "Doe",
"otherName": "Robert",
"phoneNumber": "+1234567890",
"gender": "Male",
"dob": "1990-01-15",
"countryId": 1,
"password": "Password123!",
"confirmPassword": "Password123!"
}'{}