POST {repositoryId}/Notification

Sends a Notification.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
repositoryId

ID of the resource repository (optional).

string

Default value is

Body Parameters

Data to create the new 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.

Request 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-22T08:29:34.6511736+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-22T08:29:34.6511736+01:00</ReceivedDate>
  <RepositoryId>sample string 2</RepositoryId>
  <Source>sample string 7</Source>
  <Unread>true</Unread>
</Notification>

application/x-www-form-urlencoded

Sample:

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.