GET api/NotificationProcessDoc?notificationId={notificationId}&token={token}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
notificationId

integer

Required

token

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of MDLNotificationProcessDoc
NameDescriptionTypeAdditional information
Id

integer

None.

CMORNotificationId

integer

None.

ProcessStep

ENMProcessingStep

None.

Comment

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "CMORNotificationId": 2,
    "ProcessStep": 1,
    "Comment": "sample string 3"
  },
  {
    "Id": 1,
    "CMORNotificationId": 2,
    "ProcessStep": 1,
    "Comment": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfMDLNotificationProcessDoc xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Asanus.BarCon.Middleware.Shared.ComplaintsManagement">
  <MDLNotificationProcessDoc>
    <CMORNotificationId>2</CMORNotificationId>
    <Comment>sample string 3</Comment>
    <Id>1</Id>
    <ProcessStep>Registered</ProcessStep>
  </MDLNotificationProcessDoc>
  <MDLNotificationProcessDoc>
    <CMORNotificationId>2</CMORNotificationId>
    <Comment>sample string 3</Comment>
    <Id>1</Id>
    <ProcessStep>Registered</ProcessStep>
  </MDLNotificationProcessDoc>
</ArrayOfMDLNotificationProcessDoc>