GET api/Status

Check SystemStatus of MDES, returns StatusResponse String

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

StatusResponse
NameDescriptionTypeAdditional information
StatusText

Comment regarding the status of the system.

string

None.

LastStatusDateTime

Date and time the status of the system was last updated. Format - YYYY-MM-DDThh:mm:ssTZD .

date

None.

Response Formats

application/json, text/json

Sample:
{
  "statusText": "sample string 1",
  "lastStatusDateTime": "2024-11-25T23:38:40.5972154+00:00"
}

application/xml, text/xml

Sample:
<StatusResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MDES.CustomerService.Models">
  <LastStatusDateTime>2024-11-25T23:38:40.5972154+00:00</LastStatusDateTime>
  <StatusText>sample string 1</StatusText>
</StatusResponse>