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 »

Get a list of notices by service id

Description

Get a list of notices for a specific service.

Package Details

Interface

INoticeManager

Syntax

await NoticeManager.GetByServiceId(int serviceId);

Returns

Task<ICollection<Notice>>

API

GET
/api/v1/services/{id}/notices

Parameters

Path
id: The service id

Returns

200 OK - List of notices

Example

const int serviceId = 11;
var notices = await _noticeManager.GetByServiceId(serviceId);
  • No labels