GET PlanCare2Api/RootData/Module

Returns a list of active modules

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

List of active modules.

Collection of Module
Name Description Type Additional information
Guid

The unique identifier for the module.

globally unique identifier

-

Name

The name of the module.

string

-

Response Formats

application/json, text/json

Sample:
[
  {
    "$id": "1",
    "Guid": "ff95b6fa-3390-4fef-8f34-a4e739954853",
    "Name": "sample string 2"
  },
  {
    "$ref": "1"
  }
]

application/xml, text/xml

Sample:
<ArrayOfModule xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DHS.PlanCare.Web.Api.Interface.RootData">
  <Module>
    <Guid>ff95b6fa-3390-4fef-8f34-a4e739954853</Guid>
    <Name>sample string 2</Name>
  </Module>
  <Module>
    <Guid>ff95b6fa-3390-4fef-8f34-a4e739954853</Guid>
    <Name>sample string 2</Name>
  </Module>
</ArrayOfModule>