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
}
]
}...
],...