POST api/PatientService/AddAdministeredDrugs
Add Administer Drug for patient at given time, you can add notes and status of the administration
Request Information
URI Parameters
None.
Body Parameters
Drug administration information
DrugAdministerInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| ApplicationID |
Application using Absolute EMR API |
globally unique identifier |
Required |
| ID | globally unique identifier |
None. |
|
| Patient_ID | globally unique identifier |
None. |
|
| Provider_ID | globally unique identifier |
None. |
|
| AdministeredByUser_ID | globally unique identifier |
None. |
|
| DateAdministered | date |
None. |
|
| PracticeID | globally unique identifier |
None. |
|
| AdministeredSuccessfully | boolean |
None. |
|
| Note | string |
None. |
|
| Drug_ID | globally unique identifier |
None. |
|
| PrescriptionDetail_Id | globally unique identifier |
None. |
|
| Prescription_Id | globally unique identifier |
None. |
|
| Quantity | decimal number |
None. |
|
| Frequency | string |
None. |
|
| Repeat | string |
None. |
|
| Strength | string |
None. |
|
| Instructions_Note | string |
None. |
|
| Authority | string |
None. |
|
| FrequencyUnitTypeID | integer |
None. |
|
| DrugFormTypeID | integer |
None. |
|
| DrugCategory_Id | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"ApplicationID": "a52ca40d-7ce2-4ced-a32d-26fbfdb6e5a0",
"ID": "4711d3d2-2e05-4242-b588-20ffbf0d8356",
"Patient_ID": "9dad0fdb-e638-466f-870c-da48de932f41",
"Provider_ID": "aaa44115-0099-4599-a562-667ebe7adc43",
"AdministeredByUser_ID": "8a1a09a6-a413-49a6-9f97-639f7bfb65ab",
"DateAdministered": "2025-12-14T08:57:32.547213+00:00",
"PracticeID": "6d2e8a35-6d30-419a-a154-cc161ca45edc",
"AdministeredSuccessfully": true,
"Note": "sample string 7",
"Drug_ID": "9b19d03b-0494-47ff-92d6-37ec76480eea",
"PrescriptionDetail_Id": "9d7a55ba-6fbc-4a9e-b689-5c3da76e7d3b",
"Prescription_Id": "d98f15c1-8e2d-4cec-b642-fc511e0a9115",
"Quantity": 1.0,
"Frequency": "sample string 9",
"Repeat": "sample string 10",
"Strength": "sample string 11",
"Instructions_Note": "sample string 12",
"Authority": "sample string 13",
"FrequencyUnitTypeID": 1,
"DrugFormTypeID": 1,
"DrugCategory_Id": 1
}
application/xml, text/xml
Sample:
<DrugAdministerInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AbsoluteHealth.API.Models"> <AdministeredByUser_ID xmlns="http://schemas.datacontract.org/2004/07/CSP.EMRContexts.Common.ViewModels">8a1a09a6-a413-49a6-9f97-639f7bfb65ab</AdministeredByUser_ID> <AdministeredSuccessfully xmlns="http://schemas.datacontract.org/2004/07/CSP.EMRContexts.Common.ViewModels">true</AdministeredSuccessfully> <Authority xmlns="http://schemas.datacontract.org/2004/07/CSP.EMRContexts.Common.ViewModels">sample string 13</Authority> <DateAdministered xmlns="http://schemas.datacontract.org/2004/07/CSP.EMRContexts.Common.ViewModels">2025-12-14T08:57:32.547213+00:00</DateAdministered> <DrugCategory_Id xmlns="http://schemas.datacontract.org/2004/07/CSP.EMRContexts.Common.ViewModels">1</DrugCategory_Id> <DrugFormTypeID xmlns="http://schemas.datacontract.org/2004/07/CSP.EMRContexts.Common.ViewModels">1</DrugFormTypeID> <Drug_ID xmlns="http://schemas.datacontract.org/2004/07/CSP.EMRContexts.Common.ViewModels">9b19d03b-0494-47ff-92d6-37ec76480eea</Drug_ID> <Frequency xmlns="http://schemas.datacontract.org/2004/07/CSP.EMRContexts.Common.ViewModels">sample string 9</Frequency> <FrequencyUnitTypeID xmlns="http://schemas.datacontract.org/2004/07/CSP.EMRContexts.Common.ViewModels">1</FrequencyUnitTypeID> <ID xmlns="http://schemas.datacontract.org/2004/07/CSP.EMRContexts.Common.ViewModels">4711d3d2-2e05-4242-b588-20ffbf0d8356</ID> <Instructions_Note xmlns="http://schemas.datacontract.org/2004/07/CSP.EMRContexts.Common.ViewModels">sample string 12</Instructions_Note> <Note xmlns="http://schemas.datacontract.org/2004/07/CSP.EMRContexts.Common.ViewModels">sample string 7</Note> <Patient_ID xmlns="http://schemas.datacontract.org/2004/07/CSP.EMRContexts.Common.ViewModels">9dad0fdb-e638-466f-870c-da48de932f41</Patient_ID> <PracticeID xmlns="http://schemas.datacontract.org/2004/07/CSP.EMRContexts.Common.ViewModels">6d2e8a35-6d30-419a-a154-cc161ca45edc</PracticeID> <PrescriptionDetail_Id xmlns="http://schemas.datacontract.org/2004/07/CSP.EMRContexts.Common.ViewModels">9d7a55ba-6fbc-4a9e-b689-5c3da76e7d3b</PrescriptionDetail_Id> <Prescription_Id xmlns="http://schemas.datacontract.org/2004/07/CSP.EMRContexts.Common.ViewModels">d98f15c1-8e2d-4cec-b642-fc511e0a9115</Prescription_Id> <Provider_ID xmlns="http://schemas.datacontract.org/2004/07/CSP.EMRContexts.Common.ViewModels">aaa44115-0099-4599-a562-667ebe7adc43</Provider_ID> <Quantity xmlns="http://schemas.datacontract.org/2004/07/CSP.EMRContexts.Common.ViewModels">1</Quantity> <Repeat xmlns="http://schemas.datacontract.org/2004/07/CSP.EMRContexts.Common.ViewModels">sample string 10</Repeat> <Strength xmlns="http://schemas.datacontract.org/2004/07/CSP.EMRContexts.Common.ViewModels">sample string 11</Strength> <ApplicationID>a52ca40d-7ce2-4ced-a32d-26fbfdb6e5a0</ApplicationID> </DrugAdministerInfo>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
DrugAdministrationInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | globally unique identifier |
None. |
|
| Patient_ID | globally unique identifier |
None. |
|
| Provider_ID | globally unique identifier |
None. |
|
| AdministeredByUser_ID | globally unique identifier |
None. |
|
| DateAdministered | date |
None. |
|
| PracticeID | globally unique identifier |
None. |
|
| AdministeredSuccessfully | boolean |
None. |
|
| Note | string |
None. |
|
| Drug_ID | globally unique identifier |
None. |
|
| PrescriptionDetail_Id | globally unique identifier |
None. |
|
| Prescription_Id | globally unique identifier |
None. |
|
| Quantity | decimal number |
None. |
|
| Frequency | string |
None. |
|
| Repeat | string |
None. |
|
| Strength | string |
None. |
|
| Instructions_Note | string |
None. |
|
| Authority | string |
None. |
|
| FrequencyUnitTypeID | integer |
None. |
|
| DrugFormTypeID | integer |
None. |
|
| DrugCategory_Id | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"ID": "6b3f3bd3-457c-4e55-bf5f-9b1830aa9a2a",
"Patient_ID": "d8aaf4e2-c049-4bad-b876-ff57dab8d1a4",
"Provider_ID": "6d9b56cf-b805-4b72-a551-126638159e3d",
"AdministeredByUser_ID": "961c49fd-f890-4f36-93a5-cbb5e75b42a7",
"DateAdministered": "2025-12-14T08:57:32.547213+00:00",
"PracticeID": "b14d4756-985c-4c1b-8f99-3114c5942b27",
"AdministeredSuccessfully": true,
"Note": "sample string 6",
"Drug_ID": "902ed40a-7484-4a9e-996c-d53bff4cbdfc",
"PrescriptionDetail_Id": "882e1607-51d1-4617-a246-46e166671eca",
"Prescription_Id": "6256fb05-1a96-409e-9626-c469980939b7",
"Quantity": 1.0,
"Frequency": "sample string 8",
"Repeat": "sample string 9",
"Strength": "sample string 10",
"Instructions_Note": "sample string 11",
"Authority": "sample string 12",
"FrequencyUnitTypeID": 1,
"DrugFormTypeID": 1,
"DrugCategory_Id": 1
}
application/xml, text/xml
Sample:
<DrugAdministrationInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CSP.EMRContexts.Common.ViewModels"> <AdministeredByUser_ID>961c49fd-f890-4f36-93a5-cbb5e75b42a7</AdministeredByUser_ID> <AdministeredSuccessfully>true</AdministeredSuccessfully> <Authority>sample string 12</Authority> <DateAdministered>2025-12-14T08:57:32.547213+00:00</DateAdministered> <DrugCategory_Id>1</DrugCategory_Id> <DrugFormTypeID>1</DrugFormTypeID> <Drug_ID>902ed40a-7484-4a9e-996c-d53bff4cbdfc</Drug_ID> <Frequency>sample string 8</Frequency> <FrequencyUnitTypeID>1</FrequencyUnitTypeID> <ID>6b3f3bd3-457c-4e55-bf5f-9b1830aa9a2a</ID> <Instructions_Note>sample string 11</Instructions_Note> <Note>sample string 6</Note> <Patient_ID>d8aaf4e2-c049-4bad-b876-ff57dab8d1a4</Patient_ID> <PracticeID>b14d4756-985c-4c1b-8f99-3114c5942b27</PracticeID> <PrescriptionDetail_Id>882e1607-51d1-4617-a246-46e166671eca</PrescriptionDetail_Id> <Prescription_Id>6256fb05-1a96-409e-9626-c469980939b7</Prescription_Id> <Provider_ID>6d9b56cf-b805-4b72-a551-126638159e3d</Provider_ID> <Quantity>1</Quantity> <Repeat>sample string 9</Repeat> <Strength>sample string 10</Strength> </DrugAdministrationInfo>