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": "462fbbd4-67c9-4f43-be5f-ab08b1f588b2",
"CreationDate": "2026-01-10T00:47:44.0237798+00:00",
"CreatorUserId": "f472cd20-5161-4c0e-8673-2b96af30263f",
"Status": 0,
"Result": "sample string 4",
"TenantId": "379a4301-77bb-45e5-acb8-80bbbeca4154",
"TriggerTypeId": "436138a7-0c98-47b5-8e14-3ace0ee16a84",
"Properties": [
{
"Id": "3de04a90-1a3a-4a40-b063-a9dfb2c217f7",
"Name": "sample string 2",
"Value": "sample string 3",
"CreationDate": "2026-01-10T00:47:44.0237798+00:00",
"TriggerId": "205aa776-36db-4a2a-9731-a9f4770a7afd",
"PropertyTypeId": "864ced45-8f92-4527-9ab4-6f0f2b71e333"
},
{
"Id": "3de04a90-1a3a-4a40-b063-a9dfb2c217f7",
"Name": "sample string 2",
"Value": "sample string 3",
"CreationDate": "2026-01-10T00:47:44.0237798+00:00",
"TriggerId": "205aa776-36db-4a2a-9731-a9f4770a7afd",
"PropertyTypeId": "864ced45-8f92-4527-9ab4-6f0f2b71e333"
}
]
}
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>2026-01-10T00:47:44.0237798+00:00</CreationDate>
<CreatorUserId>f472cd20-5161-4c0e-8673-2b96af30263f</CreatorUserId>
<Id>462fbbd4-67c9-4f43-be5f-ab08b1f588b2</Id>
<Properties>
<TriggerPropertyDto>
<CreationDate>2026-01-10T00:47:44.0237798+00:00</CreationDate>
<Id>3de04a90-1a3a-4a40-b063-a9dfb2c217f7</Id>
<Name>sample string 2</Name>
<PropertyTypeId>864ced45-8f92-4527-9ab4-6f0f2b71e333</PropertyTypeId>
<TriggerId>205aa776-36db-4a2a-9731-a9f4770a7afd</TriggerId>
<Value>sample string 3</Value>
</TriggerPropertyDto>
<TriggerPropertyDto>
<CreationDate>2026-01-10T00:47:44.0237798+00:00</CreationDate>
<Id>3de04a90-1a3a-4a40-b063-a9dfb2c217f7</Id>
<Name>sample string 2</Name>
<PropertyTypeId>864ced45-8f92-4527-9ab4-6f0f2b71e333</PropertyTypeId>
<TriggerId>205aa776-36db-4a2a-9731-a9f4770a7afd</TriggerId>
<Value>sample string 3</Value>
</TriggerPropertyDto>
</Properties>
<Result>sample string 4</Result>
<Status>Pending</Status>
<TenantId>379a4301-77bb-45e5-acb8-80bbbeca4154</TenantId>
<TriggerTypeId>436138a7-0c98-47b5-8e14-3ace0ee16a84</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.