...
[GET] /api/v1/servicerequests/{id}/status-history-ex
Parameter | Description | Type |
---|---|---|
serviceRequestId | The id of the service request we want its status history | int |
Returns
200 - Ok
Example
Code Block | ||
---|---|---|
| ||
using MTOA.BLL.Interfaces; int serviceRequestId = 4374; `var serviceRequestStatusHistory = await _serviceRequestManager.GetStatusHistoryEx(serviceRequestId);` |
...