POST api/triggers/anonymous
Request Information
URI Parameters
None.
Body Parameters
TriggerDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| CreationDate | date |
None. |
|
| CreatorUserId | globally unique identifier |
None. |
|
| Status | TriggerStatusDto |
None. |
|
| Result | string |
None. |
|
| TenantId | globally unique identifier |
None. |
|
| TriggerTypeId | globally unique identifier |
Required |
|
| Properties | Collection of TriggerPropertyDto |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "0d78b11d-d9df-47eb-8148-7406547e74a6",
"CreationDate": "2025-12-11T20:14:57.641629+00:00",
"CreatorUserId": "afae81a6-c2cc-4f8e-bdb9-228567a4ca7e",
"Status": 0,
"Result": "sample string 4",
"TenantId": "2ec239fe-1490-4e2c-a985-42070a2d5ffd",
"TriggerTypeId": "af74aaff-100e-434c-83f4-f1bcea2d7f39",
"Properties": [
{
"Id": "1b1075db-20a4-4d1b-bc71-057a1a4f2ca3",
"Name": "sample string 2",
"Value": "sample string 3",
"CreationDate": "2025-12-11T20:14:57.641629+00:00",
"TriggerId": "359d200c-213e-4f7c-84c8-d5a9132b6bd9",
"PropertyTypeId": "e5a0aab8-765f-4a46-97e9-68ecdf9a9740"
},
{
"Id": "1b1075db-20a4-4d1b-bc71-057a1a4f2ca3",
"Name": "sample string 2",
"Value": "sample string 3",
"CreationDate": "2025-12-11T20:14:57.641629+00:00",
"TriggerId": "359d200c-213e-4f7c-84c8-d5a9132b6bd9",
"PropertyTypeId": "e5a0aab8-765f-4a46-97e9-68ecdf9a9740"
}
]
}
application/xml, text/xml
Sample:
<TriggerDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.Notification.Models">
<CreationDate>2025-12-11T20:14:57.641629+00:00</CreationDate>
<CreatorUserId>afae81a6-c2cc-4f8e-bdb9-228567a4ca7e</CreatorUserId>
<Id>0d78b11d-d9df-47eb-8148-7406547e74a6</Id>
<Properties>
<TriggerPropertyDto>
<CreationDate>2025-12-11T20:14:57.641629+00:00</CreationDate>
<Id>1b1075db-20a4-4d1b-bc71-057a1a4f2ca3</Id>
<Name>sample string 2</Name>
<PropertyTypeId>e5a0aab8-765f-4a46-97e9-68ecdf9a9740</PropertyTypeId>
<TriggerId>359d200c-213e-4f7c-84c8-d5a9132b6bd9</TriggerId>
<Value>sample string 3</Value>
</TriggerPropertyDto>
<TriggerPropertyDto>
<CreationDate>2025-12-11T20:14:57.641629+00:00</CreationDate>
<Id>1b1075db-20a4-4d1b-bc71-057a1a4f2ca3</Id>
<Name>sample string 2</Name>
<PropertyTypeId>e5a0aab8-765f-4a46-97e9-68ecdf9a9740</PropertyTypeId>
<TriggerId>359d200c-213e-4f7c-84c8-d5a9132b6bd9</TriggerId>
<Value>sample string 3</Value>
</TriggerPropertyDto>
</Properties>
<Result>sample string 4</Result>
<Status>Pending</Status>
<TenantId>2ec239fe-1490-4e2c-a985-42070a2d5ffd</TenantId>
<TriggerTypeId>af74aaff-100e-434c-83f4-f1bcea2d7f39</TriggerTypeId>
</TriggerDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.