Versions Compared

Key

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

Retrieve the extended history of ServiceRequest status changes for a given Service Request Guid

Description

This method is used to retrieve a list of extended history of service requests status changes for a given Service Request Guid. For AP services the method retrieves different list of status per serviceStandard.

Package Details

Interface

IServiceRequestManager

Syntax

IServiceRequestManager.GetStatusHistoryExByGuid(string guid)

Returns

ICollection<MTOA.DomainObjects.ServiceRequestStatusHistoryEx>

API

...

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

Returns

200 - Ok

Example

Code Block
languagec#
using MTOA.BLL.Interfaces;

...

Code Block


string guid = "A79887623B0E619EE05438EAA7528E36";

var serviceRequestStatusHistory = await _serviceRequestManager.GetStatusHistoryExByGuid(guid);

...