Versions Compared

Key

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


Page Properties
hiddentrue
idrLANG

Product Version2021 Summer
Report Note
AssigneeAntje

Resources & Remarks

Modification History

NameDateProduct VersionAction
Antje&Nils*-28 APR 20212021 SummerContent written, rDOC, rDEV.



As of Versionproduct version 2021 summer Summer | component version 2021 summerSummer
Request MethodGET
Response FormatXML
Description


Excerpt
Retrieves the app set for the specified tenant.


The content of the corresponding app set configuration file apps.xml is returned. Not listed apps are disabled.

If the file does not exist, the error code 404 will be returned.

Request HeadersAccept: [application/xml]
Request Example/api/system/tenants/mytenant/apps
Response Example

App set of the specified tenant mytenant in the response body.

Code Block
languagexml
titleexample apps.xml
<?xml version="1.0" encoding="utf-8"?>
<apps xmlns="http://optimal-systems.org/ns/yuuvis/apps/"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://optimal-systems.org/ns/yuuvis/apps/ yuuvis-core-apps.xsd">
	<app>
		<name>clientsystem</name>
		<state>enabled</state>
	</app>
	<app>
		<name>client</name>
		<state>enabled</state>
	</app>
	<app>
		<name>email</name>
		<state>disabled</state>
	</app>
	<app>
		<name>acl</name>
		<state>disabled</state>
	</app>
</apps>


...