POST api/v1/{providerId}/infrastructure/notifications/{notificationId}/view
Mark notification as viewed
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
providerId | globally unique identifier |
Required |
|
notificationId | globally unique identifier |
Required |
Body Parameters
Com.Healthbridge.Core.CommonDomain.Interface.Commands.MarkNotificationAsViewedName | Description | Type | Additional information |
---|---|---|---|
ProviderId | globally unique identifier |
None. |
|
NotificationId | globally unique identifier |
None. |
|
CorrelationIds | Collection of string |
None. |
|
OriginatedSystem | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "ProviderId": "6ab4d6ca-021a-4e24-a5c2-c0f562f69047", "NotificationId": "dd6ae939-14da-4d3e-a7ed-a5791d193543", "CorrelationIds": [ "sample string 1", "sample string 2" ], "OriginatedSystem": "sample string 3" }
application/xml, text/xml
Sample:
<MarkNotificationAsViewed xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Com.Healthbridge.Core.CommonDomain.Interface.Commands"> <CorrelationIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns="http://mpsapi.healthbridge.com/platform/core/v1/command/"> <d2p1:string>sample string 1</d2p1:string> <d2p1:string>sample string 2</d2p1:string> </CorrelationIds> <OriginatedSystem xmlns="http://mpsapi.healthbridge.com/platform/core/v1/command/">sample string 3</OriginatedSystem> <NotificationId>dd6ae939-14da-4d3e-a7ed-a5791d193543</NotificationId> <ProviderId>6ab4d6ca-021a-4e24-a5c2-c0f562f69047</ProviderId> </MarkNotificationAsViewed>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Com.Healthbridge.Core.CommonDomain.Interface.ValueObjects.RestApiResultOfSystem.GuidName | Description | Type | Additional information |
---|---|---|---|
Sucess | boolean |
None. |
|
ResponseCode | integer |
None. |
|
ResponseMessage | string |
None. |
|
Data | globally unique identifier |
None. |
|
Links | Collection of Com.Healthbridge.Core.CommonDomain.Interface.ValueObjects.RestApiLink |
None. |
Response Formats
application/json, text/json
Sample:
{ "Sucess": true, "ResponseCode": 2, "ResponseMessage": "sample string 3", "Data": "943829b7-f6f2-4ef7-bb3f-1f4637996cdd", "Links": [ { "Rel": "sample string 1", "HRef": "sample string 2" }, { "Rel": "sample string 1", "HRef": "sample string 2" } ] }
application/xml, text/xml
Sample:
<RestApiResultOfguid xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Com.Healthbridge.Core.CommonDomain.Interface.ValueObjects"> <Data>943829b7-f6f2-4ef7-bb3f-1f4637996cdd</Data> <Links> <RestApiLink> <HRef>sample string 2</HRef> <Rel>sample string 1</Rel> </RestApiLink> <RestApiLink> <HRef>sample string 2</HRef> <Rel>sample string 1</Rel> </RestApiLink> </Links> <ResponseCode>2</ResponseCode> <ResponseMessage>sample string 3</ResponseMessage> <Sucess>true</Sucess> </RestApiResultOfguid>