Skip to main content

tenants_tenants_retrieve

GET 

/api/v3//tenants/tenants/:tenant_uuid/

Tenant Viewset

Request

Path Parameters

    tenant_uuid uuidrequired

    A UUID string identifying this Tenant.

Responses

Schema
    tenant_uuiduuidrequired
    schema_namestringrequired

    Possible values: <= 63 characters

    namestringrequired
    readyboolean
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "/api/v3/tenants/tenants/:tenant_uuid/");
request.Headers.Add("Accept", "application/json");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
/api/v3
Parameters
— pathrequired