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": "89384e17-c68f-4a31-87e7-29765f4fc1c9",
  "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>89384e17-c68f-4a31-87e7-29765f4fc1c9</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": "3a7de8c4-6f45-4047-9163-b69f8da45395",
      "PatientName": "sample string 2",
      "AlertID": "02aa2763-ce2a-4181-875f-a1d3dafa490a",
      "NotificationFeedback": "sample string 4"
    },
    {
      "PatientID": "3a7de8c4-6f45-4047-9163-b69f8da45395",
      "PatientName": "sample string 2",
      "AlertID": "02aa2763-ce2a-4181-875f-a1d3dafa490a",
      "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>02aa2763-ce2a-4181-875f-a1d3dafa490a</AlertID>
      <NotificationFeedback>sample string 4</NotificationFeedback>
      <PatientID>3a7de8c4-6f45-4047-9163-b69f8da45395</PatientID>
      <PatientName>sample string 2</PatientName>
    </PatientNotification>
    <PatientNotification>
      <AlertID>02aa2763-ce2a-4181-875f-a1d3dafa490a</AlertID>
      <NotificationFeedback>sample string 4</NotificationFeedback>
      <PatientID>3a7de8c4-6f45-4047-9163-b69f8da45395</PatientID>
      <PatientName>sample string 2</PatientName>
    </PatientNotification>
  </Responses>
</NotificationResponse>