curl --location --request POST '/auth/complete-registration' \
--header 'accept-language;' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "John Doe",
"age": 25,
"gender": "female",
"city": "Istanbul",
"country": "Turkey",
"countryCode": "TR",
"phoneNumber": "+905551234567"
}'{
"isSuccess": true,
"statusCode": 200,
"data": {
"message": "Registration completed successfully",
"user": {
"id": "507f1f77bcf86cd799439011",
"email": "user@example.com",
"name": "John Doe",
"role": "user",
"isRegistrationComplete": true,
"age": 25,
"gender": "female",
"city": "Istanbul",
"country": "Turkey",
"countryCode": "+90",
"phoneNumber": "5551234567"
}
},
"errors": [
"Error messages..."
],
"timestamp": "2026-02-14T09:58:22.016Z"
}