Skip to main content

schemas

Creates, updates, deletes, gets or lists a schemas resource.

Overview

Nameschemas
TypeResource
Idcloudflare.iam.schemas

Fields

The following fields are returned by SELECT queries:

Get SCIM Schema response

NameDatatypeDescription
contentsstring

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectaccount_id, schema_idReturns a single SCIM schema definition by schema URI ID (RFC 7643 Section 7). Valid IDs are urn:ietf:params:scim:schemas:core:2.0:User and urn:ietf:params:scim:schemas:core:2.0:Group.
listselectaccount_idReturns the list of SCIM schemas supported by the Cloudflare SCIM service (RFC 7643 Section 7, RFC 7644 Section 4). Clients use this to introspect the attributes of each resource type. Query parameters are not supported on this endpoint.

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.

NameDatatypeDescription
account_idstringThe Cloudflare account ID.
schema_idstring

SELECT examples

Returns a single SCIM schema definition by schema URI ID (RFC 7643 Section 7). Valid IDs are urn:ietf:params:scim:schemas:core:2.0:User and urn:ietf:params:scim:schemas:core:2.0:Group.

SELECT
contents
FROM cloudflare.iam.schemas
WHERE account_id = '{{ account_id }}' -- required
AND schema_id = '{{ schema_id }}' -- required
;