DELETE api/docTrigger/{id}

Delete a single record from the Triggers table.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

docTriggerDb
NameDescriptionTypeAdditional information
TriggerID

integer

None.

TriggerName

string

None.

TriggerTypeID

integer

Required

DocumentID

integer

Required

DocumentTitle

string

None.

UsageMinutes

integer

None.

UsageWindow

integer

None.

AssignFrequencyDays

integer

None.

SoftDueInDays

integer

None.

HardDueInDays

integer

None.

IsActive

boolean

None.

IsDeleted

boolean

None.

CreatedBy

integer

None.

CreatedByName

string

None.

CreatedDate

date

None.

UpdatedBy

integer

None.

UpdatedByName

string

None.

UpdatedDate

date

None.

results

Collection of ValidationResult

None.

Response Formats

application/json, text/json

Sample:
{
  "results": null,
  "TriggerID": 1,
  "TriggerName": "sample string 2",
  "TriggerTypeID": 3,
  "DocumentID": 4,
  "DocumentTitle": "sample string 5",
  "UsageMinutes": 1,
  "UsageWindow": 1,
  "AssignFrequencyDays": 1,
  "SoftDueInDays": 1,
  "HardDueInDays": 1,
  "IsActive": true,
  "IsDeleted": true,
  "CreatedBy": 8,
  "CreatedByName": "sample string 9",
  "CreatedDate": "2025-12-06T23:42:05.2247473+00:00",
  "UpdatedBy": 11,
  "UpdatedByName": "sample string 12",
  "UpdatedDate": "2025-12-06T23:42:05.2247473+00:00"
}

application/xml, text/xml

Sample:
<docTriggerDb xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Data.Tables">
  <results xmlns:d2p1="http://schemas.datacontract.org/2004/07/System.ComponentModel.DataAnnotations" i:nil="true" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Data.Utility" />
  <AssignFrequencyDays>1</AssignFrequencyDays>
  <CreatedBy>8</CreatedBy>
  <CreatedByName>sample string 9</CreatedByName>
  <CreatedDate xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
    <d2p1:DateTime>2025-12-06T23:42:05.2247473Z</d2p1:DateTime>
    <d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
  </CreatedDate>
  <DocumentID>4</DocumentID>
  <DocumentTitle>sample string 5</DocumentTitle>
  <HardDueInDays>1</HardDueInDays>
  <IsActive>true</IsActive>
  <IsDeleted>true</IsDeleted>
  <SoftDueInDays>1</SoftDueInDays>
  <TriggerID>1</TriggerID>
  <TriggerName>sample string 2</TriggerName>
  <TriggerTypeID>3</TriggerTypeID>
  <UpdatedBy>11</UpdatedBy>
  <UpdatedByName>sample string 12</UpdatedByName>
  <UpdatedDate xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
    <d2p1:DateTime>2025-12-06T23:42:05.2247473Z</d2p1:DateTime>
    <d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
  </UpdatedDate>
  <UsageMinutes>1</UsageMinutes>
  <UsageWindow>1</UsageWindow>
</docTriggerDb>