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": "67c1c9bf-3231-4d3b-b58f-24c982e58eeb",
  "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>67c1c9bf-3231-4d3b-b58f-24c982e58eeb</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": "cfaaa781-96bb-4827-9257-dc0331b82ca4",
      "PatientName": "sample string 2",
      "AlertID": "3c724035-dd84-42e0-ae03-28d8c32809a3",
      "NotificationFeedback": "sample string 4"
    },
    {
      "PatientID": "cfaaa781-96bb-4827-9257-dc0331b82ca4",
      "PatientName": "sample string 2",
      "AlertID": "3c724035-dd84-42e0-ae03-28d8c32809a3",
      "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>3c724035-dd84-42e0-ae03-28d8c32809a3</AlertID>
      <NotificationFeedback>sample string 4</NotificationFeedback>
      <PatientID>cfaaa781-96bb-4827-9257-dc0331b82ca4</PatientID>
      <PatientName>sample string 2</PatientName>
    </PatientNotification>
    <PatientNotification>
      <AlertID>3c724035-dd84-42e0-ae03-28d8c32809a3</AlertID>
      <NotificationFeedback>sample string 4</NotificationFeedback>
      <PatientID>cfaaa781-96bb-4827-9257-dc0331b82ca4</PatientID>
      <PatientName>sample string 2</PatientName>
    </PatientNotification>
  </Responses>
</NotificationResponse>