GET api/NotificationCause?notificationProcessDocId={notificationProcessDocId}&token={token}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
notificationProcessDocId

integer

Required

token

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of MDLNotificationCause
NameDescriptionTypeAdditional information
Id

integer

None.

CMORNotificationProcessDocId

integer

None.

CMORCauseId

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "CMORNotificationProcessDocId": 2,
    "CMORCauseId": 3
  },
  {
    "Id": 1,
    "CMORNotificationProcessDocId": 2,
    "CMORCauseId": 3
  }
]

application/xml, text/xml

Sample:
<ArrayOfMDLNotificationCause xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Asanus.BarCon.Middleware.Shared.ComplaintsManagement">
  <MDLNotificationCause>
    <CMORCauseId>3</CMORCauseId>
    <CMORNotificationProcessDocId>2</CMORNotificationProcessDocId>
    <Id>1</Id>
  </MDLNotificationCause>
  <MDLNotificationCause>
    <CMORCauseId>3</CMORCauseId>
    <CMORNotificationProcessDocId>2</CMORNotificationProcessDocId>
    <Id>1</Id>
  </MDLNotificationCause>
</ArrayOfMDLNotificationCause>