GET Api/Participant/GetByAlertID?alert_id={alert_id}
This method will return participant details based on the alert_id.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| alert_id |
The unique id of the participant as assigned by TouchPointCare. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
A participant object.
Participant| Name | Description | Type | Additional information |
|---|---|---|---|
| AlertID |
Gets or sets the participant alert ID (unique ID of the participant as assigned by TouchPointCare). |
integer |
None. |
| ProviderUniqueID |
Gets or sets the participant's provider unique ID (unique ID of the participant as assigned by the provider). |
string |
None. |
| FirstName |
Gets or sets the first name of the participant. |
string |
None. |
| LastName |
Gets or sets the last name of the participants. |
string |
None. |
| MobileHelpDeviceID |
Gets or sets the mobile help device ID (legacy). |
string |
None. |
| AccountName |
Gets or sets the account name associated with the participant. |
string |
None. |
| Devices |
Gets or sets a list of devices assigned to the participant. |
Collection of Device |
None. |
| IsActive |
Gets or sets a value indicating whether the the participant is active or not. |
boolean |
None. |
| IsSuspended |
Gets or sets a value indicating whether the the participant is suspended or not. |
boolean |
None. |
| AddedReferredDate |
Gets or sets the added or referred date. |
date |
None. |
| FirstActivityDate |
Gets or sets the first activity date (date of first vital or response to a telehealth question). |
date |
None. |
| LastActivityDate |
Gets or sets the last activity date (date of most recent vital or response to a telehealth question). |
date |
None. |
| TriageProScore |
Gets or sets the TriagePro score. |
decimal number |
None. |
| ParticipantCreateDate |
Gets or sets the date the participant record was created. |
date |
None. |
| DischargeDate |
Gets or sets the date of the most recent discharge for the participant. |
date |
None. |
| DischargeReason |
Gets or sets the reason of the most recent discharge for the participant. |
string |
None. |
| EquipmentStatus |
Gets or sets the equipment status currently assigned for the participant. |
string |
None. |
| StartOfCareDate |
Gets or sets the start of care date for the participant. This is imported from the EMR. |
date |
None. |
Response Formats
application/json, text/json
{
"AlertID": 1,
"ProviderUniqueID": "sample string 2",
"FirstName": "sample string 3",
"LastName": "sample string 4",
"MobileHelpDeviceID": "sample string 5",
"AccountName": "sample string 6",
"Devices": [
{
"DeviceType": "sample string 1",
"DeviceId": "sample string 2"
},
{
"DeviceType": "sample string 1",
"DeviceId": "sample string 2"
}
],
"IsActive": true,
"IsSuspended": true,
"AddedReferredDate": "2026-01-14T01:32:57.6761247-06:00",
"FirstActivityDate": "2026-01-14T01:32:57.6761247-06:00",
"LastActivityDate": "2026-01-14T01:32:57.6761247-06:00",
"TriageProScore": 1.0,
"ParticipantCreateDate": "2026-01-14T01:32:57.6761247-06:00",
"DischargeDate": "2026-01-14T01:32:57.6761247-06:00",
"DischargeReason": "sample string 10",
"EquipmentStatus": "sample string 11",
"StartOfCareDate": "2026-01-14T01:32:57.6761247-06:00"
}
application/xml, text/xml
<Participant xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TPC.Core">
<AccountName>sample string 6</AccountName>
<AddedReferredDate>2026-01-14T01:32:57.6761247-06:00</AddedReferredDate>
<AlertID>1</AlertID>
<Devices xmlns:d2p1="http://schemas.datacontract.org/2004/07/TPC.Core.BusinessEntities">
<d2p1:Device>
<d2p1:DeviceId>sample string 2</d2p1:DeviceId>
<d2p1:DeviceType>sample string 1</d2p1:DeviceType>
</d2p1:Device>
<d2p1:Device>
<d2p1:DeviceId>sample string 2</d2p1:DeviceId>
<d2p1:DeviceType>sample string 1</d2p1:DeviceType>
</d2p1:Device>
</Devices>
<DischargeDate>2026-01-14T01:32:57.6761247-06:00</DischargeDate>
<DischargeReason>sample string 10</DischargeReason>
<EquipmentStatus>sample string 11</EquipmentStatus>
<FirstActivityDate>2026-01-14T01:32:57.6761247-06:00</FirstActivityDate>
<FirstName>sample string 3</FirstName>
<IsActive>true</IsActive>
<IsSuspended>true</IsSuspended>
<LastActivityDate>2026-01-14T01:32:57.6761247-06:00</LastActivityDate>
<LastName>sample string 4</LastName>
<MobileHelpDeviceID>sample string 5</MobileHelpDeviceID>
<ParticipantCreateDate>2026-01-14T01:32:57.6761247-06:00</ParticipantCreateDate>
<ProviderUniqueID>sample string 2</ProviderUniqueID>
<StartOfCareDate>2026-01-14T01:32:57.6761247-06:00</StartOfCareDate>
<TriageProScore>1</TriageProScore>
</Participant>