GET {repositoryId}/Notification/{id}
Reads a Notification resource by ID.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
repositoryId |
ID of the resource repository (optional). |
string |
Default value is |
id |
The ID of the Notification resource. |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
The requested Notification resource.
NotificationName | Description | Type | Additional information |
---|---|---|---|
Id | string |
None. |
|
ObjectType | Types |
None. |
|
RepositoryId | string |
None. |
|
Name | string |
None. |
|
IdentityId | string |
None. |
|
Message | string |
None. |
|
ReceivedDate | date |
None. |
|
Source | string |
None. |
|
Unread | boolean |
None. |
|
From | NamedReference |
None. |
Response Formats
application/json, text/json
Sample:
{ "Id": "sample string 1", "ObjectType": 157, "RepositoryId": "sample string 2", "Name": "sample string 3", "IdentityId": "sample string 4", "Message": "sample string 5", "ReceivedDate": "2024-11-22T09:01:09.347825+01:00", "Source": "sample string 7", "Unread": true, "From": { "Name": "sample string 1", "Url": "sample string 2", "Type": 0 } }
application/xml, text/xml
Sample:
<Notification xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.openworkbpm.com/schema"> <From> <Type>Undefined</Type> <Url>sample string 2</Url> <Name>sample string 1</Name> </From> <Id>sample string 1</Id> <IdentityId>sample string 4</IdentityId> <Message>sample string 5</Message> <Name>sample string 3</Name> <ObjectType>Notification</ObjectType> <ReceivedDate>2024-11-22T09:01:09.347825+01:00</ReceivedDate> <RepositoryId>sample string 2</RepositoryId> <Source>sample string 7</Source> <Unread>true</Unread> </Notification>