GET {repositoryId}/Notification/New

Returns a new Notification resource.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
repositoryId

ID of the resource repository (optional).

string

Default value is

Body Parameters

None.

Response Information

Resource Description

A new instance of an Notification resource.

Notification
NameDescriptionTypeAdditional 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-04-25T01:29:31.8418171+02: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-04-25T01:29:31.8418171+02:00</ReceivedDate>
  <RepositoryId>sample string 2</RepositoryId>
  <Source>sample string 7</Source>
  <Unread>true</Unread>
</Notification>