Accelerate the Value of Data

Get entity types collection

This operation returns an array of entity types defined in the configuration for a tenant.

Request

GET {TenantURL}/configuration/entityTypes

Parameters

No

Response

If there is a configuration defined for a tenant specified in Header of a request, a JSON Array of entity types is returned.

If there is no such configuration, Error is returned.

Errors

  • 309: Tenant '{0}' not defined in a system
  • 310: Failed to process Reltio Business Model JSON loaded from Reltio data storage.

Request:

GET {TenantURL}/configuration/entityTypes
Headers: Tenant: Test

Response:

GET {
	TenantURL
}
/configuration/entityTypes
Headers: Tenant: Test Body: [{
		"URI": "configuration/entityTypes/Individual",
		...
	},
	{
		"URI": "configuration/entityTypes/Organization",
		...
	},
	{
		"URI": "configuration/entityTypes/Location",
		...
	}
]