Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Current »

Remove a notice

Description

Removes a notice for the given notice id.

Package Details

Interface

INoticeManager

Syntax

await NoticeManager.Remove(int noticeId);

Returns

Task<int>

API

DELETE
/api/v1/notices/{id}

Parameters

Path
id: The notice id

Returns

200 OK - Notice id

Example

const int noticeId = 123;
var notices = await _noticeManager.Remove(noticeId);

  • No labels