Updates the given notification record

PUT
api/databases/{dbid}/tables/Notifications/{id}
This request is used for checking or unchecking the given notification as 'New' and 'Read'.

Request:

Argument Type Description
dbid GUID  The ID of the database
id GUID  The ID of the record

Content

Name Type Options Description
Properties Array of name: value  List of properties of an object

Response:

In this example, the notification with ID 634ab5fb-75cb-41a3-b706-704b7a7cf0f3 is marked as not 'read'.

Request:
  1. PUT api/databases/ec5a34c2-7062-4be7-ade9-c15acefcdbb8/tables/Notifications/634ab5fb-75cb-41a3-b706-704b7a7cf0f3
  2. Accept: text/json
  3. Accept-Encoding: deflate,deflate
  4. Content-Type: text/json
  5. Authorization: Basic YWRtaW46YWRtaW4=
  6. Host: localhost:6496
  7. Content-Length: 45
  8. Expect: 100-continue
  9.  
  10. {
  11. "Properties":
  12. {
  13. "read": false
  14. }
  15. }
Response:
  1. Cache-Control: no-store
  2. Date: Fri, 21 Dec 2012 16:29:34 GMT
  3. Set-Cookie: sid=b0fbe0f9-c582-42dc-96a7-03e2fe089dc5; path=/;
  4. Server: Microsoft-HTTPAPI/2.0