List Endpoints
GET
/v1/admin/tenants/{tenant_id}/infra
const url = 'http://localhost:8080/v1/admin/tenants/example/infra';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url http://localhost:8080/v1/admin/tenants/example/infraReturn the three endpoints with effective resolution + override state.
Tenant admins always read their own tenant; platform admins may pass any tenant id. The kill switch does not gate this surface — a tenant admin can always inspect the effective endpoint config so they can diagnose “what does my tenant’s worker actually use?” regardless of whether they’re allowed to override.
Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” tenant_id
required
Tenant Id
string
Responses
Section titled “ Responses ”Successful Response
Media type application/json
Response List Endpoints V1 Admin Tenants Tenant Id Infra Get
object
key
additional properties
any
Example generated
{}Validation Error
Media type application/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationErrorobject
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
input
Input
ctx
Context
object
Example generated
{ "detail": [ { "loc": [ "example" ], "msg": "example", "type": "example", "input": "example", "ctx": {} } ]}