curl --location --request POST 'https://tp.dev/apiBASE_URL/register' \
--header 'Content-Type: application/json' \
--data-raw '{
"uid": "USER_UID_FROM_VERIFY",
"idToken": "FIREBASE_ID_TOKEN_FROM_CLIENT",
"passwordHash": "plaintextPassword123",
"name": "Jane Doe",
"email": "jane.doe@example.com",
"ccode": "+1",
"gender": "FEMALE",
"location": { "latitude": 37.78, "longitude": -122.41 },
"profileBio": "Hello world!",
"birthDate": "1990-05-15",
"searchPreference": "ANY",
"radiusSearch": 25,
"relationshipGoals": "LONG_TERM",
"datingTimeline": "SOON",
"parentalInvolvement": "NONE",
"hobbies": ["hiking","reading"],
"lifestyle": ["vegan","active"],
"languages": ["en","es"],
"personalityTraits": ["friendly","adventurous"],
"profilePic": "https://cdn.truepair.com/users/jane.jpg"
}'