Get Configuration (No Inheritance)
Return a configuration for a tenant without inheritance with verticals
This operation returns a configuration for a tenant without inheritance with verticals.
Request
GET {TenantURL}/configuration/_noInheritance
Parameters
Type | Name | Required | Operation specific | Description |
---|---|---|---|---|
Path | TenantURL | Yes | No | Defines the tenant that should be used to return the configuration. |
Response
If there is a configuration defined for a tenant specified in a request, a JSON Object representing this configuration (without inheritance with verticals) is returned. If there is no configuration, an error is returned.
Example Request
GET {TenantURL}/configuration/_noInheritance
Example Response
{
"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"
}
]
}
]
}