Get all tenant configurations
get
/admin/tenantConfigurations
Request
There are no request parameters for this operation.
There's no request body for this operation.
Back to TopResponse
Supported Media Types
- application/json
200 Response
OK
Nested Schema : TenantConfiguration
Type:
Show Source
object
-
name: string
Pattern:
^[a-zA-Z0-9_]+$
-
scope: string
Allowed Values:
[ "Functional", "UI" ]
-
settings: array
settings
Nested Schema : TenantConfigurationSetting
Type:
Show Source
object
-
configurations: array
configurations
-
name: string
Pattern:
^[a-zA-Z0-9_]+$
Nested Schema : TenantConfigurationSettingConfig
Type:
Show Source
object
-
name: string
Pattern:
^[a-zA-Z0-9_]+$
-
value: string
Pattern:
^[a-zA-Z0-9.\_\/\-\:\{\}\;\=\?\,\&\%]+$
400 Response
Bad Request
Root Schema : Error
Type:
object
Used when an API throws an Error, typically with a HTTP error response-code (3xx, 4xx, 5xx)
Show Source
-
@baseType: string
When sub-classing, this defines the super-class.
-
@schemaLocation: string
(uri)
A URI to a JSON-Schema file that defines additional attributes and relationships
-
@type: string
When sub-classing, this defines the sub-class entity name.
-
code(required): string
Application relevant detail, defined in the API or a common list.
-
message: string
More details and corrective actions related to the error which can be shown to a client user.
-
reason(required): string
Explanation of the reason for the error which can be shown to a client user.
-
referenceError: string
(uri)
URI of documentation describing the error.
-
status: string
HTTP Error code extension
401 Response
Unauthorized
Root Schema : Error
Type:
object
Used when an API throws an Error, typically with a HTTP error response-code (3xx, 4xx, 5xx)
Show Source
-
@baseType: string
When sub-classing, this defines the super-class.
-
@schemaLocation: string
(uri)
A URI to a JSON-Schema file that defines additional attributes and relationships
-
@type: string
When sub-classing, this defines the sub-class entity name.
-
code(required): string
Application relevant detail, defined in the API or a common list.
-
message: string
More details and corrective actions related to the error which can be shown to a client user.
-
reason(required): string
Explanation of the reason for the error which can be shown to a client user.
-
referenceError: string
(uri)
URI of documentation describing the error.
-
status: string
HTTP Error code extension
403 Response
Forbidden
Root Schema : Error
Type:
object
Used when an API throws an Error, typically with a HTTP error response-code (3xx, 4xx, 5xx)
Show Source
-
@baseType: string
When sub-classing, this defines the super-class.
-
@schemaLocation: string
(uri)
A URI to a JSON-Schema file that defines additional attributes and relationships
-
@type: string
When sub-classing, this defines the sub-class entity name.
-
code(required): string
Application relevant detail, defined in the API or a common list.
-
message: string
More details and corrective actions related to the error which can be shown to a client user.
-
reason(required): string
Explanation of the reason for the error which can be shown to a client user.
-
referenceError: string
(uri)
URI of documentation describing the error.
-
status: string
HTTP Error code extension
404 Response
Not Found
Root Schema : Error
Type:
object
Used when an API throws an Error, typically with a HTTP error response-code (3xx, 4xx, 5xx)
Show Source
-
@baseType: string
When sub-classing, this defines the super-class.
-
@schemaLocation: string
(uri)
A URI to a JSON-Schema file that defines additional attributes and relationships
-
@type: string
When sub-classing, this defines the sub-class entity name.
-
code(required): string
Application relevant detail, defined in the API or a common list.
-
message: string
More details and corrective actions related to the error which can be shown to a client user.
-
reason(required): string
Explanation of the reason for the error which can be shown to a client user.
-
referenceError: string
(uri)
URI of documentation describing the error.
-
status: string
HTTP Error code extension
500 Response
Internal Server Error
Root Schema : Error
Type:
object
Used when an API throws an Error, typically with a HTTP error response-code (3xx, 4xx, 5xx)
Show Source
-
@baseType: string
When sub-classing, this defines the super-class.
-
@schemaLocation: string
(uri)
A URI to a JSON-Schema file that defines additional attributes and relationships
-
@type: string
When sub-classing, this defines the sub-class entity name.
-
code(required): string
Application relevant detail, defined in the API or a common list.
-
message: string
More details and corrective actions related to the error which can be shown to a client user.
-
reason(required): string
Explanation of the reason for the error which can be shown to a client user.
-
referenceError: string
(uri)
URI of documentation describing the error.
-
status: string
HTTP Error code extension
Examples
The following example shows how to get all tenant configurations by submitting a GET request on the REST resource using cURL.
curl -H 'Authorization: Bearer <Token>' -X GET
https://{FABRIC_HOST}/admin/tenantConfigurations -H
"Content-Type: application/json" | json_pp
Example of Response Body
The following example shows the contents of the response body in JSON format, including <additoinal information>:
[ { "name": "unspecifiedDashboardTiles", "scope": "UI", "settings": [ { "name": "assets", "configurations": [ { "name": "visible", "value": "true" } ] }, { "name": "billUnitBalances", "configurations": [ { "name": "visible", "value": "true" } ] }, { "name": "serviceRequests", "configurations": [ { "name": "visible", "value": "true" }, { "name": "count", "value": "6" } ] } ] }, { "name": "billingDashboardTiles", "scope": "UI", "settings": [ { "name": "billHistory", "configurations": [ { "name": "limit", "value": "6" } ] }, { "name": "paymentHistory", "configurations": [ { "name": "limit", "value": "6" } ] }, { "name": "bills", "configurations": [ { "name": "visible", "value": "true" } ] }, { "name": "serviceRequests", "configurations": [ { "name": "visible", "value": "true" }, { "name": "count", "value": "6" } ] }, { "name": "accountReceivables", "configurations": [ { "name": "visible", "value": "true" }, { "name": "adjustmentsCount", "value": "6" } ] } ] }, { "name": "targetUrls", "scope": "UI", "settings": [ { "name": "serviceRequestListPage", "configurations": [ { "name": "target", "value": "https://{{host}}/fscmUI/faces/deeplink?objType=SVC_SERVICE_REQUEST" } ] }, { "name": "contactDetailPage", "configurations": [ { "name": "target", "value": "https://{{host}}/crmUI/faces/FuseOverview?fndGlobalItemNodeId=HZ_FOUNDATIONPARTIES_CONTACTS_CRM_CARD&fndTaskItemNodeId=HZ_FOUNDATIONPARTIES_CONTACTS_CRM&fnd=;subTabName=Overview%253BContactPartyId={{contactId}};;;;false;256;;" } ] }, { "name": "serviceRequestEditPage", "configurations": [ { "name": "target", "value": "https://{{host}}/fscmUI/faces/deeplink?objType=SVC_SERVICE_REQUEST&objKey=srNumber={{srNumber}}&action=EDIT_IN_TAB" } ] } ] }, { "name": "adjustmentThresholds", "scope": "Functional", "settings": [ { "name": "currencyThreshold", "configurations": [ { "name": "positiveThreshold", "value": "1" }, { "name": "negativeThreshold", "value": "-1" } ] } ] }, { "name": "brmConfigurations", "scope": "Functional", "settings": [ { "name": "adjustmentReasons", "configurations": [ { "name": "ORA_ATC_NOT_SATISFIED_SERVICE", "value": "1" }, { "name": "ORA_ATC_CHARGE_UNAWARE", "value": "2" }, { "name": "ORA_ATC_DEBIT_MISTAKE", "value": "3" }, { "name": "ORA_ATC_SUPPORT_CHARGES", "value": "4" }, { "name": "ORA_ATC_SERVICE_CHARGES", "value": "5" } ] } ] }, { "name": "generalSettings", "scope": "UI", "settings": [ { "name": "billingPeriod", "configurations": [ { "name": "numberOfYears", "value": "4" } ] }, { "name": "useFusionAppsUserPreference", "configurations": [ { "name": "dateTimeFormat", "value": "false" }, { "name": "numberFormat", "value": "false" } ] }, { "name": "currencySymbol", "configurations": [ { "name": "placement", "value": "before" } ] } ] } ]