POST api/Clinical/CareTeamMember/Get
Gets the list of care team members for a patient's encounters
Request Information
URI Parameters
None.
Body Parameters
BaseRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| PersonUid |
Encryped passcode for the authenticated user. |
string |
Required |
| StartDate |
Start date of the request. A time component is not used when passing the start date. |
date |
[Optional] |
| EndDate |
End date of the request. A time component is not used when passing the end date. |
date |
[Optional] |
Request Formats
application/json, text/json
Sample:
{
"PersonUid": "sample string 1",
"StartDate": "2026-05-11T07:55:48.8113094-04:00",
"EndDate": "2026-05-11T07:55:48.8113094-04:00"
}
Response Information
Resource Description
CareTeamMemberResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| CareTeamMembers | Collection of CareTeamMember | ||
| ErrorMessage |
If the success property is false, the ErrorMessage property will contain error text, otherwise it will be null. |
string | |
| ErrorType |
Text of the type of error that has occured (See the Error Handling section for more information). |
string | |
| Success |
Represents the success of the call. |
boolean |
Response Formats
application/json, text/json
Sample:
{
"CareTeamMembers": [
{
"FirstName": "sample string 1",
"LastName": "sample string 2",
"MiddleName": "sample string 3",
"Suffix": "sample string 4",
"PostFix": "sample string 5",
"PerformerFunctionCode": "sample string 6"
},
{
"FirstName": "sample string 1",
"LastName": "sample string 2",
"MiddleName": "sample string 3",
"Suffix": "sample string 4",
"PostFix": "sample string 5",
"PerformerFunctionCode": "sample string 6"
}
],
"ErrorMessage": "sample string 1",
"ErrorType": "sample string 2",
"Success": true
}