Deletes a specified trigger.
| Parameter | Type | Description | 
|---|---|---|
| TriggerId
           required  | 
        string | The unique ID of the trigger that you want to delete. | 
The response contains the ID of the trigger that was deleted.
| Parameter | Type | Description | 
|---|---|---|
| TriggerId
             required  | 
          string | The unique ID of the trigger that was deleted. | 
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
 xmlns:v2="http://nphase.com/unifiedwebservice/v2" 
 xmlns:nph="http://schemas.datacontract.org/2004/07/NPhase.UnifiedWebService.APIs.v2.Contract.TriggerService">
  <soapenv:Header>
   	<v2:token>${#Project#token}</v2:token>
  </soapenv:Header>
  <soapenv:Body>
    <v2:DeleteTrigger>
      <v2:Input>
        <nph:TriggerId>2F112F46-9BC0-4D1A-99B5-CB0A32F3FE56</nph:TriggerId>
      </v2:Input>
    </v2:DeleteTrigger>
  </soapenv:Body>
</soapenv:Envelope>
  
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
   <s:Body>
      <DeleteTriggerResponse xmlns="http://nphase.com/unifiedwebservice/v2">
         <Output xmlns:a="http://schemas.datacontract.org/2004/07/NPhase.UnifiedWebService.APIs.v2.Contract.TriggerService" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
            <a:TriggerId>2F112F46-9BC0-4D1A-99B5-CB0A32F3FE56</a:TriggerId>
         </Output>
      </DeleteTriggerResponse>
   </s:Body>
</s:Envelope>