POST api/Security/PatientSendAlerts
Request Information
URI Parameters
None.
Body Parameters
RequestBase| Name | Description | Type | Additional information |
|---|---|---|---|
| PatientID | globally unique identifier |
None. |
|
| WebApiVersion | integer |
None. |
|
| Language | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"PatientID": "bd226815-a731-443e-b5b7-8f0450c97bb4",
"WebApiVersion": 2,
"Language": "sample string 3"
}
application/xml, text/xml
Sample:
<RequestBase xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SehatukaAPI.DTO"> <Language>sample string 3</Language> <PatientID>bd226815-a731-443e-b5b7-8f0450c97bb4</PatientID> <WebApiVersion>2</WebApiVersion> </RequestBase>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
NotificationResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Responses | Collection of PatientNotification |
None. |
|
| WebApiVersion | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Responses": [
{
"PatientID": "d62c7e3b-46d7-46b8-8a53-b47c8c00dd4c",
"PatientName": "sample string 2",
"AlertID": "72956199-c056-4210-9e76-5bc4f92f8a72",
"NotificationFeedback": "sample string 4"
},
{
"PatientID": "d62c7e3b-46d7-46b8-8a53-b47c8c00dd4c",
"PatientName": "sample string 2",
"AlertID": "72956199-c056-4210-9e76-5bc4f92f8a72",
"NotificationFeedback": "sample string 4"
}
],
"WebApiVersion": 1
}
application/xml, text/xml
Sample:
<NotificationResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SehatukaAPI.DTO">
<WebApiVersion>1</WebApiVersion>
<Responses>
<PatientNotification>
<AlertID>72956199-c056-4210-9e76-5bc4f92f8a72</AlertID>
<NotificationFeedback>sample string 4</NotificationFeedback>
<PatientID>d62c7e3b-46d7-46b8-8a53-b47c8c00dd4c</PatientID>
<PatientName>sample string 2</PatientName>
</PatientNotification>
<PatientNotification>
<AlertID>72956199-c056-4210-9e76-5bc4f92f8a72</AlertID>
<NotificationFeedback>sample string 4</NotificationFeedback>
<PatientID>d62c7e3b-46d7-46b8-8a53-b47c8c00dd4c</PatientID>
<PatientName>sample string 2</PatientName>
</PatientNotification>
</Responses>
</NotificationResponse>