POST api/triggercategories
Creates a trigger category.
Request Information
URI Parameters
None.
Body Parameters
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": "b7457883-ac14-48d3-b5e4-8325104572f5",
"Name": "sample string 2",
"Description": "sample string 3",
"CreationDate": "2026-01-10T00:45:20.0760346+00:00",
"CreatorUserId": "8167b9af-785d-4b82-a09d-cfbb3af95787",
"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-10T00:45:20.0760346+00:00</CreationDate> <CreatorUserId>8167b9af-785d-4b82-a09d-cfbb3af95787</CreatorUserId> <Description>sample string 3</Description> <Id>b7457883-ac14-48d3-b5e4-8325104572f5</Id> <IsDeleted>true</IsDeleted> <Name>sample string 2</Name> </TriggerCategoryDto>
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.