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
NameDescriptionTypeAdditional information
TenantId

globally unique identifier

None.

TenantXRef

string

None.

Description

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "TenantId": "e10c2a7e-6cda-41e3-bf44-339ae4b70119",
    "TenantXRef": "sample string 2",
    "Description": "sample string 3"
  },
  {
    "TenantId": "e10c2a7e-6cda-41e3-bf44-339ae4b70119",
    "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>e10c2a7e-6cda-41e3-bf44-339ae4b70119</TenantId>
    <TenantXRef>sample string 2</TenantXRef>
  </Tenant>
  <Tenant>
    <Description>sample string 3</Description>
    <TenantId>e10c2a7e-6cda-41e3-bf44-339ae4b70119</TenantId>
    <TenantXRef>sample string 2</TenantXRef>
  </Tenant>
</ArrayOfTenant>