Cyan Web API - Version 1


GET api/tenants/{tenantId}

            Gets a Tenant.
            

Request Information

Parameters

NameDescriptionAdditional information
tenantId

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "tenantId": "ff8b7db0-c3d2-4864-a16c-e228d4dd4e72",
  "parentTenantId": "583f3cc7-b8eb-4dc7-b504-2488a441172a",
  "lookupKey": "sample string 2",
  "name": "sample string 3",
  "description": "sample string 4",
  "accessKey": "sample string 5",
  "enrollmentId": "sample string 6",
  "enrollmentPassword": "sample string 7",
  "recoveryUrl": "sample string 8",
  "createdDateUtc": "2026-08-27T04:34:13.5320097+00:00",
  "updatedDateUtc": "2026-08-27T04:34:13.5320097+00:00"
}

application/xml, text/xml

Sample:
<TenantRepresentation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BlueDot.Cyan.Server.Core.Models.Rest.Version1">
  <CreatedDateUtc>2026-08-27T04:34:13.5320097+00:00</CreatedDateUtc>
  <UpdatedDateUtc>2026-08-27T04:34:13.5320097+00:00</UpdatedDateUtc>
  <AccessKey>sample string 5</AccessKey>
  <Description>sample string 4</Description>
  <EnrollmentId>sample string 6</EnrollmentId>
  <EnrollmentPassword>sample string 7</EnrollmentPassword>
  <LookupKey>sample string 2</LookupKey>
  <Name>sample string 3</Name>
  <ParentTenantId>583f3cc7-b8eb-4dc7-b504-2488a441172a</ParentTenantId>
  <RecoveryUrl>sample string 8</RecoveryUrl>
  <TenantId>ff8b7db0-c3d2-4864-a16c-e228d4dd4e72</TenantId>
</TenantRepresentation>