POST api/triggercategories

Creates a trigger category.

Request Information

URI Parameters

None.

Body Parameters

TriggerCategoryDto
NameDescriptionTypeAdditional 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": "79bd2721-7eb1-411a-9fc6-e7ab3a47067e",
  "Name": "sample string 2",
  "Description": "sample string 3",
  "CreationDate": "2025-12-11T20:14:59.6318569+00:00",
  "CreatorUserId": "b175fb06-de6f-4164-875c-8236b1eafc6f",
  "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:14:59.6318569+00:00</CreationDate>
  <CreatorUserId>b175fb06-de6f-4164-875c-8236b1eafc6f</CreatorUserId>
  <Description>sample string 3</Description>
  <Id>79bd2721-7eb1-411a-9fc6-e7ab3a47067e</Id>
  <IsDeleted>true</IsDeleted>
  <Name>sample string 2</Name>
</TriggerCategoryDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.