Retrieve a service request
Description
This method is used to retrieve a service request by service request id.
Package Details
Interface
IServiceRequestManager
Syntax
_serviceRequestManager.GetById<T>(int serviceRequestId) where T : IServiceRequestMetadata
Returns
Task<ServiceRequest>
API Endpoint
[GET] /api/v1/users/{id}/servicerequests
Returns
200 - Ok
Example
using MTOA.BLL.Interfaces; int MyServiceId = 123; var serviceRequest = await _serviceRequestManager.GetById<T>(MyServiceId);