Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This method is used to retrieve a collection of Service Request
status history for a given Service Request guid. For AP services the method retrieves different list of status per serviceStandard.

Package Details

Interface

IServiceRequestManager

...

IServiceRequestManager.GetStatusHistoryByGuid(string guid)

Returns

ICollection<ServiceRequestStatusHistory>

API

[GET] /api/v1/servicerequests/status-history

Returns

200 - Ok

Example

Code Block
languagec#
using MTOA.BLL.Interfaces;

string guid = "A79887623B0E619EE05438EAA7528E36";

var count = await _serviceRequestManager.GetStatusHistoryByGuid(guid);

...