GET api/V2/modules/getModules

Get all exixting modules

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

OrgModules
NameDescriptionTypeAdditional information
Id

integer

None.

OrgId

globally unique identifier

None.

ModulId

integer

None.

ModulNavn

string

None.

IsOrgModule

boolean

None.

Used

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "id": 1,
  "orgId": "076c266a-d5f9-4b8c-8b3b-7e2ab79630fb",
  "modulId": 3,
  "modulNavn": "sample string 4",
  "isOrgModule": true,
  "used": true
}

application/xml, text/xml

Sample:
<OrgModules xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/oiback.Classes">
  <Id>1</Id>
  <IsOrgModule>true</IsOrgModule>
  <ModulId>3</ModulId>
  <ModulNavn>sample string 4</ModulNavn>
  <OrgId>076c266a-d5f9-4b8c-8b3b-7e2ab79630fb</OrgId>
  <Used>true</Used>
</OrgModules>