GET api/NotificationAction?notificationProcessDocId={notificationProcessDocId}&token={token}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| notificationProcessDocId | integer |
Required |
|
| token | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of MDLNotificationAction| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| CMORNotificationProcessDocId | integer |
None. |
|
| CMORActionId | integer |
None. |
|
| PlannedDate | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"CMORNotificationProcessDocId": 2,
"CMORActionId": 3,
"PlannedDate": "2025-12-31T16:28:38.1574623+01:00"
},
{
"Id": 1,
"CMORNotificationProcessDocId": 2,
"CMORActionId": 3,
"PlannedDate": "2025-12-31T16:28:38.1574623+01:00"
}
]
application/xml, text/xml
Sample:
<ArrayOfMDLNotificationAction xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Asanus.BarCon.Middleware.Shared.ComplaintsManagement">
<MDLNotificationAction>
<CMORActionId>3</CMORActionId>
<CMORNotificationProcessDocId>2</CMORNotificationProcessDocId>
<Id>1</Id>
<PlannedDate>2025-12-31T16:28:38.1574623+01:00</PlannedDate>
</MDLNotificationAction>
<MDLNotificationAction>
<CMORActionId>3</CMORActionId>
<CMORNotificationProcessDocId>2</CMORNotificationProcessDocId>
<Id>1</Id>
<PlannedDate>2025-12-31T16:28:38.1574623+01:00</PlannedDate>
</MDLNotificationAction>
</ArrayOfMDLNotificationAction>