tenants
Creates, updates, deletes, gets or lists a tenants resource.
Overview
| Name | tenants |
| Type | Resource |
| Id | cloudflare.user.tenants |
Fields
The following fields are returned by SELECT queries:
- list
The request has succeeded.
| Name | Datatype | Description |
|---|---|---|
id | string | (example: a7b9c3d2e8f4g1h5i6j0k9l2m3n7o4p8, title: Organization ID) |
name | string | |
create_time | string (date-time) | |
meta | object | |
parent | object | |
profile | object |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | Retrieves list of tenants the authenticated user / method has access to. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|
SELECT examples
- list
Retrieves list of tenants the authenticated user / method has access to.
SELECT
id,
name,
create_time,
meta,
parent,
profile
FROM cloudflare.user.tenants
;