Remove an outage notice
Description
Removes an outage notice for the given outage notice id.
Package Details
Interface
IOutageNoticeManager
Syntax
await OutageNoticeManager.Remove(int outageId);
Returns
Task<int>
API
DELETE
/api/v1/outage-notices/{id}
Parameters
Path
id: The outage id
Returns
200 OK - Outage id
Example
const int noticeId = 123
var notices = await _outageNoticeManager.Remove(noticeId);