POST api/Security/PatientSendAlerts

Request Information

URI Parameters

None.

Body Parameters

RequestBase
NameDescriptionTypeAdditional information
PatientID

globally unique identifier

None.

WebApiVersion

integer

None.

Language

string

None.

Request Formats

application/json, text/json

Sample:
{
  "PatientID": "9ba80832-fc90-4f02-b249-b01311a14458",
  "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>9ba80832-fc90-4f02-b249-b01311a14458</PatientID>
  <WebApiVersion>2</WebApiVersion>
</RequestBase>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

NotificationResponse
NameDescriptionTypeAdditional information
Responses

Collection of PatientNotification

None.

WebApiVersion

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "Responses": [
    {
      "PatientID": "a91ada29-655e-447d-a3f8-4c9c12229b0d",
      "PatientName": "sample string 2",
      "AlertID": "f37bddb5-763f-4527-8db5-e496bde1b17e",
      "NotificationFeedback": "sample string 4"
    },
    {
      "PatientID": "a91ada29-655e-447d-a3f8-4c9c12229b0d",
      "PatientName": "sample string 2",
      "AlertID": "f37bddb5-763f-4527-8db5-e496bde1b17e",
      "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>f37bddb5-763f-4527-8db5-e496bde1b17e</AlertID>
      <NotificationFeedback>sample string 4</NotificationFeedback>
      <PatientID>a91ada29-655e-447d-a3f8-4c9c12229b0d</PatientID>
      <PatientName>sample string 2</PatientName>
    </PatientNotification>
    <PatientNotification>
      <AlertID>f37bddb5-763f-4527-8db5-e496bde1b17e</AlertID>
      <NotificationFeedback>sample string 4</NotificationFeedback>
      <PatientID>a91ada29-655e-447d-a3f8-4c9c12229b0d</PatientID>
      <PatientName>sample string 2</PatientName>
    </PatientNotification>
  </Responses>
</NotificationResponse>