🚧 We’re still putting the finishing touches on our platform
Get Tenant Details
Retrieve detailed information about a specific tenant.
Endpoint: GET /api/tenants/{tenantUuid}
Authentication: Required (Bearer Token)
URL Parameters:
tenantUuid
(string, UUID): The unique identifier of the tenant
Request Headers:
Content-Type: application/json
Accept: application/json
Authorization: Bearer YOUR_API_TOKEN
Success Response (200 OK):
{
"tenant_id": "860f5708-21eb-44bf-bb4f-ce1dbed2ede1",
"organization_name": "Agile Harbor",
"domains": {
"base": "dmz-tey-k83.webfluss.com",
"custom": null,
"subdomain": null
}
}
Response Fields:
tenant_id
(string, UUID): The unique identifier for the tenantorganization_name
(string): The name of the organization/websitedomains
(object): Domain configuration for the tenantbase
(string|null): The base domain assigned to the tenantcustom
(string|null): Custom domain if configuredsubdomain
(string|null): Subdomain if configured
Error Responses:
401 Unauthorized:
{
"message": "Unauthorized"
}
404 Not Found:
{
"message": "No query results for model [App\\Models\\Tenant] {tenant_uuid}"
}
Usage Examples
Get Tenant Details
curl -X GET https://webfluss.com/api/tenants/860f5708-21eb-44bf-bb4f-ce1dbed2ede1 \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "Authorization: Bearer YOUR_API_TOKEN"
Example Response:
{
"tenant_id": "860f5708-21eb-44bf-bb4f-ce1dbed2ede1",
"organization_name": "Agile Harbor",
"domains": {
"base": "dmz-tey-k83.webfluss.com",
"custom": null,
"subdomain": null
}
}
Domain Information
Domain Types
- Base Domain: The primary domain automatically assigned to the tenant (e.g.,
dmz-tey-k83.webfluss.com
) - Custom Domain: A custom domain configured by the user (e.g.,
example.com
) - Subdomain: A subdomain under the main domain (e.g.,
mysite.webfluss.com
)