Versions Compared

Key

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

Retrieve a collection of Service Request status history for a given Service Request guid

Description

This method is used to retrieve a collection of Service Request
status history for a given Service Request guid.

Package Details

Interface

IServiceRequestManager

Syntax

IServiceRequestManager.GetStatusHistoryByGuid(string guid)

Returns

ICollection<ServiceRequestStatusHistory>

API

...

[GET] /api/v1/servicerequests/status-historyParameters
guid:[string]

Returns

200 - Ok

Example

Code Block
using MTOA.BLL.Interfaces;

...



string guid = "A79887623B0E619EE05438EAA7528E36";

...



var count = await _serviceRequestManager.GetStatusHistoryByGuid(guid);