GET api/ProviderService/GetUserTasks?userID={userID}&practiceID={practiceID}

Get User Tasks

Request Information

URI Parameters

NameDescriptionTypeAdditional information
userID

globally unique identifier

Required

practiceID

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

Collection of TaskInfo
NameDescriptionTypeAdditional 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.

Response Formats

application/json, text/json

Sample:
[
  {
    "Task_Id": "767ec2e4-0011-4579-8098-a8a73ece8018",
    "Name": "sample string 2",
    "Description": "sample string 3",
    "Due_Date": "2025-06-08T02:22:50.2783265+00:00",
    "Patient_Id": "8ad0c139-3a3f-4fd6-a418-974c1b723600",
    "Provider_Id": "1ed8fd32-97a6-4117-affd-241d13537ac4",
    "Is_Read": true,
    "Is_Completed": true,
    "Is_Urgent": true,
    "Created_Date": "2025-06-08T02:22:50.2783265+00:00",
    "Created_By": "sample string 4",
    "ClinicalTaskTypeID": 1,
    "Practice_Id": "8858d34d-8159-4f7c-a01d-19197639b421",
    "Entity_Name": "sample string 5"
  },
  {
    "Task_Id": "767ec2e4-0011-4579-8098-a8a73ece8018",
    "Name": "sample string 2",
    "Description": "sample string 3",
    "Due_Date": "2025-06-08T02:22:50.2783265+00:00",
    "Patient_Id": "8ad0c139-3a3f-4fd6-a418-974c1b723600",
    "Provider_Id": "1ed8fd32-97a6-4117-affd-241d13537ac4",
    "Is_Read": true,
    "Is_Completed": true,
    "Is_Urgent": true,
    "Created_Date": "2025-06-08T02:22:50.2783265+00:00",
    "Created_By": "sample string 4",
    "ClinicalTaskTypeID": 1,
    "Practice_Id": "8858d34d-8159-4f7c-a01d-19197639b421",
    "Entity_Name": "sample string 5"
  }
]

application/xml, text/xml

Sample:
<ArrayOfTaskInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CSP.EMRContexts.Common.ViewModels">
  <TaskInfo>
    <ClinicalTaskTypeID>1</ClinicalTaskTypeID>
    <Created_By>sample string 4</Created_By>
    <Created_Date>2025-06-08T02:22:50.2783265+00:00</Created_Date>
    <Description>sample string 3</Description>
    <Due_Date>2025-06-08T02:22:50.2783265+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>8ad0c139-3a3f-4fd6-a418-974c1b723600</Patient_Id>
    <Practice_Id>8858d34d-8159-4f7c-a01d-19197639b421</Practice_Id>
    <Provider_Id>1ed8fd32-97a6-4117-affd-241d13537ac4</Provider_Id>
    <Task_Id>767ec2e4-0011-4579-8098-a8a73ece8018</Task_Id>
  </TaskInfo>
  <TaskInfo>
    <ClinicalTaskTypeID>1</ClinicalTaskTypeID>
    <Created_By>sample string 4</Created_By>
    <Created_Date>2025-06-08T02:22:50.2783265+00:00</Created_Date>
    <Description>sample string 3</Description>
    <Due_Date>2025-06-08T02:22:50.2783265+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>8ad0c139-3a3f-4fd6-a418-974c1b723600</Patient_Id>
    <Practice_Id>8858d34d-8159-4f7c-a01d-19197639b421</Practice_Id>
    <Provider_Id>1ed8fd32-97a6-4117-affd-241d13537ac4</Provider_Id>
    <Task_Id>767ec2e4-0011-4579-8098-a8a73ece8018</Task_Id>
  </TaskInfo>
</ArrayOfTaskInfo>