POST api/SubscriptionActionRuns
Creates a subscription action.
Request Information
URI Parameters
None.
Body Parameters
The subscription action model to create with.
SubscriptionActionRunDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Result | string |
None. |
|
| Status | SubscriptionActionStatusDto |
None. |
|
| CreationDate | date |
None. |
|
| CreatorUserId | globally unique identifier |
None. |
|
| Duration | time interval |
None. |
|
| ActionId | globally unique identifier |
None. |
|
| TriggerId | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "6d197ac5-fca3-4481-9140-89fa5390d94d",
"Result": "sample string 2",
"Status": 0,
"CreationDate": "2026-01-10T18:55:45.1919531+00:00",
"CreatorUserId": "dc5b6f65-1276-4686-83d6-3305764c0bb4",
"Duration": "00:00:00.1234567",
"ActionId": "c4322862-9bbf-49f7-a00c-8c03ab2cc7ee",
"TriggerId": "8f4c462d-56d6-4989-a712-750529626142"
}
application/xml, text/xml
Sample:
<SubscriptionActionRunDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.Notification.Models"> <ActionId>c4322862-9bbf-49f7-a00c-8c03ab2cc7ee</ActionId> <CreationDate>2026-01-10T18:55:45.1919531+00:00</CreationDate> <CreatorUserId>dc5b6f65-1276-4686-83d6-3305764c0bb4</CreatorUserId> <Duration>PT0.1234567S</Duration> <Id>6d197ac5-fca3-4481-9140-89fa5390d94d</Id> <Result>sample string 2</Result> <Status>Pending</Status> <TriggerId>8f4c462d-56d6-4989-a712-750529626142</TriggerId> </SubscriptionActionRunDto>
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.