...
Search existing MPI entity
Search only active persons - MPI.persons.is_active=true
- if tax_id is not null and age>=16
- search via
tax_id
+first_name
+last_name
- search via
MPI attribute | Pre-condition | Condition | POST data attribute |
---|---|---|---|
MPI.person.tax_id | optional | equal | $.tax_id |
MPI.person.first_name | always | equal | $.first_name |
MPI.person.last_name | always | equal | $.last_name |
- if tax_id is null and age>=16
- search via
first_name
+last_name + birth_date
- search via
MPI attribute | Pre-condition | Condition | POST data attribute |
---|---|---|---|
MPI.person.last_name | always | equal | $.last_name |
MPI.person.first_name | always | equal | $.first_name |
MPI.person.birth_date | always | equal | $.birth_date |
- if age<16
- search via
birth_certificate
+birth_date
- search via
MPI attribute | Pre-condition | Condition | POST data attribute |
---|---|---|---|
MPI.person.phones.number (type=MOBILE) | optional | equal | $.phone_number |
MPI.person.birth_certificate | optional | equal | $.birth_certificate |
- Return empty array if no data found
- Return only requested params, birth_place, second_name and merged_ids if data found
...