Table of Contents
Table of Contents | ||
---|---|---|
|
...
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
{
"messagesFact": {
"statusFact": {
"success": true
}
,"messageObjects": [
{
"messageId": "ff80818147e7ee6c0147e7f14d000005",
"type": "ParameterizedAlert",
"podId": "Pod A",
"location": "INBOX",
"labels": [],
"messageDate": "8/18/14",
"messageTime": "09:07",
"description": "Skin To Skin Alert",
"title": " peggy 500##split##33wks 999g",
"payload": "This patient has not had skin to skin contact for at least 7 consecutive days.",
"status": "Unread",
"priority": "HIGH",
"tasksCount": 0,
"tasksComplete": 0
},{
"messageId": "22",
...
}
]}} |
Set Messages
Current Implementation
This operation is used to change the status of one or more messages.
Info |
---|
This is a POST operation! |
Parameters
Base URL: /setMessages
Parameters:
Name | Type | Mandatory | Description |
---|---|---|---|
token | String | Yes | Security Token obtained before. |
userId | String | Yes | The id of the logged in user. |
action | ENUM | Yes | Possible values: ['Read', 'Unread', 'Archive', 'Delete'] This is the action we want to execute agains the messageĀ |
messageIds | String | Yes | The id of the message you want to execute the action against. You could include this parameter multiple times to work on multiple messages at once. |
location | ENUM | Yes | Possible values: ['INBOX', 'SENT', 'ARCHIVE']. Default value: "INBOX". |
types | ENUM | Yes | Possible values: ['ALL', 'ALERT', 'EMAIL', 'DOCUMENT',"PARAMETERIZEDALERT' ]. Default value: "ALL". |
API Sample
curl 'http://192.168.2.109:8080/PresentationServices/setMessages' -H 'Accept: application/json, text/javascript, */*; q=0.01' -H 'Origin: file://' -H 'User-Agent: Mozilla/5.0 (Linux; Android 4.4.4; Nexus 5 Build/KTU84P) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/33.0.0.0 Mobile Safari/537.36' -H 'Content-Type: application/x-www-form-urlencoded; charset=UTF-8' --data 'action=Read&messageIds=ff80818147fd49740147fd55b2e40002&location=INBOX&types=ParameterizedAlert&userId=sigal&token=481fe6f1-c7a5-4d94-8b5b-7c0bec3d2aed' --compressed
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
{ "messagesFact": { "statusFact": { "success": true, "failMessage": "Set Messages successful" } } } |