PUT api/SubscriptionActionRuns/{id}
Updates a subscription action.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The id of the subscription action to update. |
globally unique identifier |
Required |
Body Parameters
The subscription action model to update 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": "3a397d62-1b95-4bd2-b20d-10ed0ebaabed",
"Result": "sample string 2",
"Status": 0,
"CreationDate": "2026-01-10T10:27:23.2514717+00:00",
"CreatorUserId": "5d27d28e-5a72-427e-89b0-03185dc5942c",
"Duration": "00:00:00.1234567",
"ActionId": "0cd5bc93-cfc1-4229-948d-9d1661336eef",
"TriggerId": "036264b3-32b6-4f4c-acf3-b84f55e4e358"
}
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>0cd5bc93-cfc1-4229-948d-9d1661336eef</ActionId> <CreationDate>2026-01-10T10:27:23.2514717+00:00</CreationDate> <CreatorUserId>5d27d28e-5a72-427e-89b0-03185dc5942c</CreatorUserId> <Duration>PT0.1234567S</Duration> <Id>3a397d62-1b95-4bd2-b20d-10ed0ebaabed</Id> <Result>sample string 2</Result> <Status>Pending</Status> <TriggerId>036264b3-32b6-4f4c-acf3-b84f55e4e358</TriggerId> </SubscriptionActionRunDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.