You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Last name and date of births are two required fields; however, in the event that the end-user does not provide this data, the matching API should gracefully fail. In the event of no birth date, the API throws a SQLAlchemy error and does not generate a response. In the event of no last name, the algorithm will generate a brand new MCI entry with null as the last name.
The text was updated successfully, but these errors were encountered:
@gregmundy and I discussed this. We concluded that:
If a user does not provide a last_name or date_of_birth, then by default the master-client-index should create a new user – without POSTing to the matching service. (Currently, we cannot imagine a DTA wanting a match-score threshold lower than 0.8.)
In other words, this query should never raise an error:
Last name and date of births are two required fields; however, in the event that the end-user does not provide this data, the matching API should gracefully fail. In the event of no birth date, the API throws a SQLAlchemy error and does not generate a response. In the event of no last name, the algorithm will generate a brand new MCI entry with
null
as the last name.The text was updated successfully, but these errors were encountered: