curl --location --request POST '/api/v2/auth/register' \
--header 'Content-Type: application/json' \
--data-raw '{
"first_name": "John",
"last_name": "Doe",
"email": "john.doe@example.com",
"phone_number": "+1234567890",
"password": "password123",
"confirm_password": "password123",
"birthdate": "1990-01-01",
"post_code": "12345",
"country": "United States"
}'{
"access_token": "string",
"user": {
"id": 0,
"full_name": "string",
"email": "user@example.com",
"email_verified_at": "2019-08-24T14:15:22.123Z",
"avatar": "string",
"created_at": "2019-08-24T14:15:22.123Z"
}
}