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": "2a47dbaf-ddd1-4272-85c3-8b04a8a46ba2",
"CreationDate": "2026-01-10T18:54:24.1425194+00:00",
"CreatorUserId": "3f69db2c-367f-4490-8562-f067b5428a43",
"Status": 0,
"Result": "sample string 4",
"TenantId": "addf3c57-139c-43a7-ba8e-757157ed8824",
"TriggerTypeId": "5d502cd0-d83e-485a-b43b-eac04b4f2335",
"Properties": [
{
"Id": "b0bba428-6432-4d87-9e8d-8c49e1f744d0",
"Name": "sample string 2",
"Value": "sample string 3",
"CreationDate": "2026-01-10T18:54:24.1425194+00:00",
"TriggerId": "76649463-e745-476b-b802-ccb5d604c3a4",
"PropertyTypeId": "910f53b5-a7cc-4a11-83a9-6fa85d0e389d"
},
{
"Id": "b0bba428-6432-4d87-9e8d-8c49e1f744d0",
"Name": "sample string 2",
"Value": "sample string 3",
"CreationDate": "2026-01-10T18:54:24.1425194+00:00",
"TriggerId": "76649463-e745-476b-b802-ccb5d604c3a4",
"PropertyTypeId": "910f53b5-a7cc-4a11-83a9-6fa85d0e389d"
}
]
}
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-10T18:54:24.1425194+00:00</CreationDate>
<CreatorUserId>3f69db2c-367f-4490-8562-f067b5428a43</CreatorUserId>
<Id>2a47dbaf-ddd1-4272-85c3-8b04a8a46ba2</Id>
<Properties>
<TriggerPropertyDto>
<CreationDate>2026-01-10T18:54:24.1425194+00:00</CreationDate>
<Id>b0bba428-6432-4d87-9e8d-8c49e1f744d0</Id>
<Name>sample string 2</Name>
<PropertyTypeId>910f53b5-a7cc-4a11-83a9-6fa85d0e389d</PropertyTypeId>
<TriggerId>76649463-e745-476b-b802-ccb5d604c3a4</TriggerId>
<Value>sample string 3</Value>
</TriggerPropertyDto>
<TriggerPropertyDto>
<CreationDate>2026-01-10T18:54:24.1425194+00:00</CreationDate>
<Id>b0bba428-6432-4d87-9e8d-8c49e1f744d0</Id>
<Name>sample string 2</Name>
<PropertyTypeId>910f53b5-a7cc-4a11-83a9-6fa85d0e389d</PropertyTypeId>
<TriggerId>76649463-e745-476b-b802-ccb5d604c3a4</TriggerId>
<Value>sample string 3</Value>
</TriggerPropertyDto>
</Properties>
<Result>sample string 4</Result>
<Status>Pending</Status>
<TenantId>addf3c57-139c-43a7-ba8e-757157ed8824</TenantId>
<TriggerTypeId>5d502cd0-d83e-485a-b43b-eac04b4f2335</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.