Hi,
I'm finishing up an implementation for updating patient details for phone, cell phone and email. I'm trying to get a better understanding of the workflow.
if a patient updates their home phone i would be passing the following according to the r4 docs:
{
"path": "/telecom/{index}/value",
"op": "replace",
"value": "1234567890"
}
questions:
- How is the index determined in the path?
- If the patient has a home phone, cell phone and email will there be 3 indexes in that case?
- Can multiple values be replaced? Can i replace the home phone and cell phone values in one call or must they be done separately?
Thank you for any assistance you can provide.