...
Code Block |
---|
await _feedbackManager.GetCountByServiceId(int serviceId, int userId) |
Returns
Task<int>
API
...
GET
/api/v1/feedback/services/{serviceId}/count
...
On authorization error, 403 Forbidden
Example
Code Block | ||
---|---|---|
| ||
var serviceId = 2; var feedbackCount = await _feedbackManager.GetCountByServiceId(serviceId); |
...