POST api/ProviderService/AddUserTask
Add User Task
Request Information
URI Parameters
None.
Body Parameters
TaskInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| Task_Id | globally unique identifier |
None. |
|
| Name | string |
None. |
|
| Description | string |
None. |
|
| Due_Date | date |
None. |
|
| Patient_Id | globally unique identifier |
None. |
|
| Provider_Id | globally unique identifier |
None. |
|
| Is_Read | boolean |
None. |
|
| Is_Completed | boolean |
None. |
|
| Is_Urgent | boolean |
None. |
|
| Created_Date | date |
None. |
|
| Created_By | string |
None. |
|
| ClinicalTaskTypeID | integer |
None. |
|
| Practice_Id | globally unique identifier |
None. |
|
| Entity_Name | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Task_Id": "bf4d3a61-145d-43b5-b636-088ebde490c7",
"Name": "sample string 2",
"Description": "sample string 3",
"Due_Date": "2026-05-07T13:19:20.2217247+00:00",
"Patient_Id": "8ccad927-6627-41f2-bdc7-6b71cbe78c38",
"Provider_Id": "618715ed-3d8a-49fc-9b35-0d73493814ae",
"Is_Read": true,
"Is_Completed": true,
"Is_Urgent": true,
"Created_Date": "2026-05-07T13:19:20.2217247+00:00",
"Created_By": "sample string 4",
"ClinicalTaskTypeID": 1,
"Practice_Id": "72f5b102-f27e-4c48-9bc0-a6b54954285c",
"Entity_Name": "sample string 5"
}
application/xml, text/xml
Sample:
<TaskInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CSP.EMRContexts.Common.ViewModels"> <ClinicalTaskTypeID>1</ClinicalTaskTypeID> <Created_By>sample string 4</Created_By> <Created_Date>2026-05-07T13:19:20.2217247+00:00</Created_Date> <Description>sample string 3</Description> <Due_Date>2026-05-07T13:19:20.2217247+00:00</Due_Date> <Entity_Name>sample string 5</Entity_Name> <Is_Completed>true</Is_Completed> <Is_Read>true</Is_Read> <Is_Urgent>true</Is_Urgent> <Name>sample string 2</Name> <Patient_Id>8ccad927-6627-41f2-bdc7-6b71cbe78c38</Patient_Id> <Practice_Id>72f5b102-f27e-4c48-9bc0-a6b54954285c</Practice_Id> <Provider_Id>618715ed-3d8a-49fc-9b35-0d73493814ae</Provider_Id> <Task_Id>bf4d3a61-145d-43b5-b636-088ebde490c7</Task_Id> </TaskInfo>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>