Evo Voice

<back to all web services

DeleteAlert

Delete the specified alert

Requires Authentication
Requires any of the roles:SystemAdministrator, Manager, Customer
The following routes are available for this service:
DELETE/alerts/{alertId}
using System;
using System.IO;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using Voice.Api.Alerts;

namespace Voice.Api.Alerts
{
    ///<summary>
    ///Delete the specified alert
    ///</summary>
    [Api(Description="Delete the specified alert")]
    public partial class DeleteAlert
        : IDelete
    {
        ///<summary>
        ///The ID of the alert to delete
        ///</summary>
        [ApiMember(Description="The ID of the alert to delete")]
        public virtual string AlertId { get; set; }
    }

}

C# DeleteAlert DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv

HTTP + JSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

DELETE /alerts/{alertId} HTTP/1.1 
Host: evovoice.io 
Accept: text/jsv