GET Configuration
Returns the configuration for a tenant.
This operation returns the configuration for a tenant, with inheritance from the configuration layers. For more information on configuration inheritance, see Tenant configuration inheritance across layers. To retrieve specific object type, see Manage configuration by object type.
Request
GET {TenantURL}/configuration
See this operation on the Developer Portal.
Parameters
| Type | Name | Required | Description |
|---|---|---|---|
| Path | TenantURL | Yes | Defines tenant that should be used to return configuration |
| Query | select | No | Identifies what elements of configuration should be returned. It is possible to return: justentityTypes, groupTypes, relationTypes, etc. |
Response
If there is a configuration defined for a tenant specified in Header of a request, then a JSON Object representing this configuration is returned. If there is no configuration, an Error is returned.
- 309
- Tenant '{0}' not defined in a system
- 310
- Failed to process Reltio Business Model JSON loaded from Reltio data storage
Example Request
GET {TenantURL}/configuration
Example Response
GET {TenantURL}/configuration
Body:{
"label":"Test Business Model",
"description":"Test Business Model Configuration-used to describe Configuration API
format",
"schemaVersion":"1",
"entityTypes":[
{
"URI":"configuration/entityTypes/Individual",
"label":"Individual",
"name":"Individual",
"id":"1",
"description":"These entity types for representing people",
"attributes":[
{
"URI":"configuration/entityTypes/Individual/attributes/FirstName",
"name":"FirstName",
"label":"First Name",
"id":"2",
"type":"String"
}
]
}
]
}