Flows/Create a patient: Difference between revisions
From OHC Network Wiki
More languages
More actions
Content deleted Content added
OHC identity seed |
OHC identity seed Tag: Reverted |
||
| Line 3: | Line 3: | ||
|domain=clinical |
|domain=clinical |
||
|title=Create a patient |
|title=Create a patient |
||
|summary=Registering a new patient in Care — the minimum path from search to a saved record ready for an encounter. |
|||
|order=1 |
|order=1 |
||
|introduced=3.0 |
|introduced=3.0 |
||
| Line 12: | Line 11: | ||
This flow walks through registering a '''new patient''' in Care — the minimum path from search to a saved record ready for an encounter. |
This flow walks through registering a '''new patient''' in Care — the minimum path from search to a saved record ready for an encounter. |
||
{{Info|title=Prerequisite|1=Read [[Concepts/ |
{{Info|title=Prerequisite|1=Read [[Concepts/Patient]] to understand what a patient record contains and how identifiers work.}} |
||
== Before you start == |
== Before you start == |
||
| Line 35: | Line 34: | ||
{| class="wikitable" |
{| class="wikitable" |
||
| ⚫ | |||
|- |
|- |
||
| ⚫ | |||
| ⚫ | |||
! Notes |
|||
|- |
|- |
||
| Name |
|||
| ⚫ | |||
| ⚫ | |||
|- |
|- |
||
| Date of birth |
|||
| ⚫ | |||
| ⚫ | |||
|- |
|- |
||
| Sex |
|||
| ⚫ | |||
| ⚫ | |||
|- |
|- |
||
| Phone |
|||
| ⚫ | |||
| ⚫ | |||
|- |
|||
| Identifier |
|||
| ⚫ | |||
|} |
|} |
||
| Line 67: | Line 73: | ||
{| class="wikitable" |
{| class="wikitable" |
||
| ⚫ | |||
|- |
|- |
||
| ⚫ | |||
| ⚫ | |||
! When |
|||
|- |
|- |
||
| Start an encounter |
|||
| ⚫ | |||
| ⚫ | |||
|- |
|- |
||
| Print registration slip |
|||
| ⚫ | |||
| ⚫ | |||
|- |
|||
| Link national health ID |
|||
| ⚫ | |||
|} |
|} |
||
== API equivalent == |
== API equivalent == |
||
<syntaxhighlight lang="http"> |
<syntaxhighlight lang="http">POST /api/v1/patient/ |
||
POST /api/v1/patient/ |
|||
Content-Type: application/json |
Content-Type: application/json |
||
| ⚫ | |||
<syntaxhighlight lang="json"> |
|||
{ |
{ |
||
"name": "Jane Doe", |
"name": "Jane Doe", |
||
| Line 89: | Line 97: | ||
"gender": "female", |
"gender": "female", |
||
"phone_number": "+91XXXXXXXXXX" |
"phone_number": "+91XXXXXXXXXX" |
||
| ⚫ | |||
} |
|||
</syntaxhighlight> |
|||
Exact payload shape depends on your Care version and facility questionnaire. Use the OpenAPI schema for your instance. |
Exact payload shape depends on your Care version and facility questionnaire. Use the OpenAPI schema for your instance. |
||
| Line 97: | Line 103: | ||
Deployment-specific handling (unknown identity, emergency intake without ID, duplicate merges) is documented in playbooks, not here. |
Deployment-specific handling (unknown identity, emergency intake without ID, duplicate merges) is documented in playbooks, not here. |
||
→ See [[Outpatient registration|Outpatient registration]] for HMIS registration desk scenarios. |
|||
{{Related}} |
{{Related}} |
||