PUT api/triggercategories/{id}
Updates a trigger category.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The id of the trigger category to update. |
globally unique identifier |
Required |
Body Parameters
The trigger category model to update with.
TriggerCategoryDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Name | string |
Required String length: inclusive between 0 and 512 |
|
| Description | string |
None. |
|
| CreationDate | date |
None. |
|
| CreatorUserId | globally unique identifier |
None. |
|
| IsDeleted | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "82257234-a5c3-46ef-b2ca-4049d7201443",
"Name": "sample string 2",
"Description": "sample string 3",
"CreationDate": "2025-12-11T20:15:11.1008101+00:00",
"CreatorUserId": "025e0c97-f681-4d2c-95df-306c3bfb8191",
"IsDeleted": true
}
application/xml, text/xml
Sample:
<TriggerCategoryDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.Notification.Models"> <CreationDate>2025-12-11T20:15:11.1008101+00:00</CreationDate> <CreatorUserId>025e0c97-f681-4d2c-95df-306c3bfb8191</CreatorUserId> <Description>sample string 3</Description> <Id>82257234-a5c3-46ef-b2ca-4049d7201443</Id> <IsDeleted>true</IsDeleted> <Name>sample string 2</Name> </TriggerCategoryDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.