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": "c2f0852f-9619-4002-9a73-8815ac551bfe",
"Name": "sample string 2",
"Description": "sample string 3",
"CreationDate": "2026-01-10T18:53:59.2720536+00:00",
"CreatorUserId": "5d4c8950-7cec-4c9e-8f35-ee081b3fb737",
"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-10T18:53:59.2720536+00:00</CreationDate> <CreatorUserId>5d4c8950-7cec-4c9e-8f35-ee081b3fb737</CreatorUserId> <Description>sample string 3</Description> <Id>c2f0852f-9619-4002-9a73-8815ac551bfe</Id> <IsDeleted>true</IsDeleted> <Name>sample string 2</Name> </TriggerCategoryDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.