service_provider_configs
Creates, updates, deletes, gets or lists a service_provider_configs resource.
Overview
| Name | service_provider_configs |
| Type | Resource |
| Id | cloudflare.iam.service_provider_configs |
Fields
The following fields are returned by SELECT queries:
- list
Get SCIM Service Provider Config response
| Name | Datatype | Description |
|---|---|---|
contents | string |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | account_id | Returns the SCIM 2.0 Service Provider configuration (RFC 7643 Section 5). IdPs use this endpoint to auto-configure their SCIM integration with Cloudflare, discovering which optional features (patch, bulk, filter, etc.) are supported. |
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 |
|---|---|---|
account_id | string | The Cloudflare account ID. |
SELECT examples
- list
Returns the SCIM 2.0 Service Provider configuration (RFC 7643 Section 5). IdPs use this endpoint to auto-configure their SCIM integration with Cloudflare, discovering which optional features (patch, bulk, filter, etc.) are supported.
SELECT
contents
FROM cloudflare.iam.service_provider_configs
WHERE account_id = '{{ account_id }}' -- required
;