Skip to main content

R4 Basic: Call Intake

System: https://fhir.netsmartcloud.com/v4/ValueSet/basic-resource-type

Code: callintake

The Call Intake Basic resource is used to make the myAvatar Call Intake form accessible via FHIR.

Supported CareRecords

CareRecord / SolutionCreateReadUpdateSearch
GEHRIMED----
myAvatarYesYesYesYes
myEvolv----
myUnity----
Referral Manager----

Extensions

NameCard.Data TypeNotes
Caller1..1ComplexThis includes a code bound to a customizable dictionary configured in myAvatar and may vary by organization.
Date1..1datetime
Disposition1..1codeThis is bound to a customizable dictionary configured in myAvatar and may vary by organization.
Patient Name1..1HumanName
Program1..1codeThis is bound to a customizable dictionary configured in myAvatar and may vary by organization.
Remarks0..1string
Type1..1codeC | W
Call or Walk-In

Sample Payload

{
"resourceType": "Basic",
"id": "P11||CAL66632.001",
"meta": {
"lastUpdated": "2023-05-10T14:52:36.789-05:00"
},
"extension": [
{
"url": "https://fhir.netsmartcloud.com/v4/StructureDefinition/callintake-caller",
"extension": [
{
"url": "type",
"valueCode": "A"
},
{
"url": "name",
"valueHumanName": [
{
"family": "FAMILY",
"given": [
"GIVEN"
]
}
]
}
]
},
{
"url": "https://fhir.netsmartcloud.com/v4/StructureDefinition/callintake-date",
"valueDateTime": "2023-05-10T11:22:00-05:00"
},
{
"url": "https://fhir.netsmartcloud.com/v4/StructureDefinition/callintake-disposition",
"valueCode": "42"
},
{
"url": "https://fhir.netsmartcloud.com/v4/StructureDefinition/callintake-patient-name",
"valueHumanName": {
"family": "LAST",
"given": [
"FIRST"
]
}
},
{
"url": "https://fhir.netsmartcloud.com/v4/StructureDefinition/callintake-program",
"valueCode": "360"
},
{
"url": "https://fhir.netsmartcloud.com/v4/StructureDefinition/callintake-remarks",
"valueString": "This is free text entered about this call intake.\nIt may include line breaks."
},
{
"url": "https://fhir.netsmartcloud.com/v4/StructureDefinition/callintake-type",
"valueCode": "C"
}
],
"code": {
"coding": [
{
"system": "https://fhir.netsmartcloud.com/v4/ValueSet/basic-resource-type",
"code": "callintake"
}
]
},
"subject": {
"reference": "Patient/P11",
"type": "Patient"
}
}