This resource contains details of a clinical diagnosis, problem, or other concept that needs to be conveyed for context about a patient’s wellness. This could be sent prior to a patient visit or received as a follow-up. A condition may or may not be related to a specific encounter, and the details may be about a condition that's active, resolved, or recurring.
You can receive, retrieve, or save condition information.
We support any valid FHIR® field. However, we only display the fields that we’ve defined in the schema, which are usually based on what’s included in the US Core profile.
This operation allows you to save new or updated clinical details to a patient’s chart.
cURL request example
curl 'https://api.redoxengine.com/fhir/R4/{destinationId}/{environmentFlag}/Condition/$write' \--request POST \--header 'Authorization: Bearer $API_TOKEN' \--header 'Content-Type: application/fhir+json' \--data '{"resourceType": "Bundle","id": "RedoxConditionMessageBundleExample","type": "message","timestamp": "2021-12-17T20:33:22.422Z","entry": [{"resource": {"resourceType": "MessageHeader","id": "RedoxMessageHeaderExample","source": {"name": "Good Health Clinics","endpoint": "05107c08-fe2f-4740-8c1d-c7107d18ebe5"},"eventCoding": {"system": "urn:redox:event-type","code": "Condition-New"}}},{"resource": {"resourceType": "Condition","id": "RedoxProblemConditionExamplePneumonia","category": [{"coding": [{"code": "problem-list-item","system": "http://terminology.hl7.org/CodeSystem/condition-category"}]}],"identifier": [{"system": "urn:oid:1.2.840.114350.1.13.12345.1.7.2.768076","value": "1248190455"}],"subject": {"reference": "Patient/RedoxPatientExampleTimothy"},"clinicalStatus": {"coding": [{"code": "resolved","system": "http://terminology.hl7.org/CodeSystem/condition-clinical"}]},"code": {"coding": [{"code": "233604007","system": "http://snomed.info/sct"}],"text": "Pneumonia"},"onsetDateTime": "2012-08-06T04:00:00.000Z","abatementDateTime": "2012-08-06T04:00:00.000Z"}},{"resource": {"resourceType": "Patient","id": "RedoxPatientExampleTimothy","meta": {"extension": [{"url": "https://fhir.redoxengine.com/StructureDefinition/example-sort-order","valueInteger": 1}]},"extension": [{"extension": [{"url": "text","valueString": "White"}],"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race"},{"extension": [{"url": "ombCategory","valueCoding": {"code": "2135-2","system": "urn:oid:2.16.840.1.113883.6.238","display": "Hispanic or Latino"}},{"url": "text","valueString": "Hispanic"}],"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity"}],"identifier": [{"value": "0000000001","system": "urn:redox:health-one:MR"},{"value": "101-01-0001","system": "http://hl7.org/fhir/sid/us-ssn"}],"name": [{"given": ["Timothy","Paul"],"family": "Bixby","use": "official"},{"text": "Billy","use": "usual"}],"gender": "male","birthDate": "2008-01-06","telecom": [{"value": "+18088675301","system": "phone","use": "home"},{"value": "+18008675309","system": "phone","use": "work"},{"value": "timothy.bixby@redoxengine.com","system": "email"}],"address": [{"line": ["4762 Hickory Street"],"city": "Monroe","district": "Greene","state": "WI","postalCode": "53566","country": "US","use": "home"}],"maritalStatus": {"coding": [{"code": "M","system": "http://hl7.org/fhir/v3/MaritalStatus","display": "Married"}],"text": "Married"},"communication": [{"language": {"coding": [{"code": "en","system": "urn:ietf:bcp:47"}],"text": "English"}}],"contact": [{"name": {"given": ["Barbara"],"family": "Bixby"},"telecom": [{"value": "+18088675303","system": "phone","use": "home"},{"value": "barbara.bixby@redoxengine.com","system": "email"}],"address": {"line": ["4762 Hickory St."],"city": "Monroe","district": "Green","state": "WI","postalCode": "53566","country": "USA"},"relationship": [{"coding": [{"code": "MTH","system": "http://terminology.hl7.org/CodeSystem/v3-RoleCode","display": "mother"}],"text": "Mother"},{"coding": [{"code": "C","system": "http://terminology.hl7.org/CodeSystem/v2-0131","display": "Emergency Contact"}],"text": "Emergency Contact"}]}],"generalPractitioner": [{"reference": "Practitioner/RedoxPractitionerExamplePat"}],"managingOrganization": {"reference": "Organization/RedoxOrganizationManagingExample"}}}]}'
Identifies the type of the resource
Bundle
Identifies this bundle as a message
message
An array of FHIR resources. At a minium, a Condition should include the following entries:
If other resources are included, due to being referenced within an entry, they should conform to the applicable Redox profile.
An entry in the bundle containing a FHIR resource
Additional metadata about the message including the event
Identifies the type of the resource
MessageHeader
Information about the sender of the message. This will typically be populated by Redox.
Identifies the routing target to send acknowledgements to.
Human-readable name for the source system.
This describes the message being communicated
The identification of the code system that defines the meaning of the symbol in the code.
A symbol in syntax defined by the system. The symbol may be a predefined code or an expression in a syntax defined by the coding system (e.g. post-coordination).
The date/time that the bundle was assembled - i.e. when the resources were placed in the bundle.