All Collections
Developer Integrations
FHIR Extension: Permission to contact via Email / SMS
FHIR Extension: Permission to contact via Email / SMS

Documentation for our "Contact Point Message Permission" Extension in FHIR4

Juan Ospina avatar
Written by Juan Ospina
Updated over a week ago

Extension: "Contact Point Message Permission"
URL: "http://help.caredove.com/developer-integrations/contactpoint-message-permission"
Value: valueBoolean

Description:

This extension is used to indicate whether the user has granted permission to be contacted via email or SMS.

Resource & Resource Element Locations:

Both extensions are located under Patient.telecom. The email extension is applicable when the system element value is email, while the SMS extension is applicable when the system element value is phone.

Example - Email:

"telecom": [
...
{
"system": "email",
"value": "t3st@t3st.com",
"rank": 2,
"extension": [
{
"url": "http://help.caredove.com/developer-integrations/contactpoint-message-permission",
"valueBoolean": false
}
]
}
]

Example - SMS:

"telecom": [
{
"system": "phone",
"value": "1 (236) 888-8888",
"rank": 1,
"extension": [
{
"url": "http://help.caredove.com/developer-integrations/contactpoint-message-permission",
"valueBoolean": true
}
]
}...
],...
Did this answer your question?