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": "e372ed33-aa9d-4de3-9c1b-a3ee8fe7c199",
"Name": "sample string 2",
"Description": "sample string 3",
"CreationDate": "2026-01-10T10:21:54.412334+00:00",
"CreatorUserId": "4ab89f3f-4e0b-4278-bb61-5f6f274d491f",
"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>2026-01-10T10:21:54.412334+00:00</CreationDate> <CreatorUserId>4ab89f3f-4e0b-4278-bb61-5f6f274d491f</CreatorUserId> <Description>sample string 3</Description> <Id>e372ed33-aa9d-4de3-9c1b-a3ee8fe7c199</Id> <IsDeleted>true</IsDeleted> <Name>sample string 2</Name> </TriggerCategoryDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.