GET api/v1/infrastructure/tenant
Get tenant list
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Array of all tenants
Collection of Com.Healthbridge.Core.CommonDomain.Interface.ValueObjects.TenantVo| Name | Description | Type | Additional information |
|---|---|---|---|
| TenantId | globally unique identifier |
None. |
|
| TenantXRef | string |
None. |
|
| Description | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"TenantId": "1ac352f9-4a1c-4af2-be2f-88e0a8f5e8f1",
"TenantXRef": "sample string 2",
"Description": "sample string 3"
},
{
"TenantId": "1ac352f9-4a1c-4af2-be2f-88e0a8f5e8f1",
"TenantXRef": "sample string 2",
"Description": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfTenant xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://mpsapi.healthbridge.com/platform/commondomain/v1/tenant/">
<Tenant>
<Description>sample string 3</Description>
<TenantId>1ac352f9-4a1c-4af2-be2f-88e0a8f5e8f1</TenantId>
<TenantXRef>sample string 2</TenantXRef>
</Tenant>
<Tenant>
<Description>sample string 3</Description>
<TenantId>1ac352f9-4a1c-4af2-be2f-88e0a8f5e8f1</TenantId>
<TenantXRef>sample string 2</TenantXRef>
</Tenant>
</ArrayOfTenant>