Cyan Web API - Version 1


GET api/tenantApplications?{tenantId}&{applicationId}

            Gets a TenantApplication.
            

Request Information

Parameters

NameDescriptionAdditional information
tenantId

Define this parameter in the request URI.

applicationId

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "tenantId": "b56d0c10-70f6-4345-a2b6-bc4353441bff",
  "applicationId": "2bfcaa9d-9390-4438-b79f-3857bd2d6152",
  "licenseKey": "sample string 3",
  "isLicenseKeyActive": true,
  "totalLicenses": 5,
  "applicationLookupKey": "sample string 6",
  "createdDateUtc": "2025-12-20T12:21:26.5919606+00:00",
  "updatedDateUtc": "2025-12-20T12:21:26.5919606+00:00"
}

application/xml, text/xml

Sample:
<TenantApplicationRepresentation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BlueDot.Cyan.Server.Core.Models.Rest.Version1">
  <CreatedDateUtc>2025-12-20T12:21:26.5919606+00:00</CreatedDateUtc>
  <UpdatedDateUtc>2025-12-20T12:21:26.5919606+00:00</UpdatedDateUtc>
  <ApplicationId>2bfcaa9d-9390-4438-b79f-3857bd2d6152</ApplicationId>
  <ApplicationLookupKey>sample string 6</ApplicationLookupKey>
  <IsLicenseKeyActive>true</IsLicenseKeyActive>
  <LicenseKey>sample string 3</LicenseKey>
  <TenantId>b56d0c10-70f6-4345-a2b6-bc4353441bff</TenantId>
  <TotalLicenses>5</TotalLicenses>
</TenantApplicationRepresentation>