gitpod.v1.OrganizationService

CreateSCIMConfiguration

Creates a new SCIM configuration for automated user provisioning.

Use this method to:

  • Set up SCIM 2.0 provisioning from an identity provider
  • Generate a bearer token for SCIM API authentication
  • Link SCIM provisioning to an existing SSO configuration

Examples

  • Create basic SCIM configuration:

    Creates a SCIM configuration linked to an SSO provider.

    organizationId: "b0e12f6c-4c67-429d-a4a6-d9838b5da047"
    ssoConfigurationId: "d2c94c27-3b76-4a42-b88c-95a85e392c68"
    
post/gitpod.v1.OrganizationService/CreateSCIMConfiguration

Request body

namestring nullable

name is a human-readable name for the SCIM configuration

organizationIdstring uuid required

organization_id is the ID of the organization to create the SCIM configuration for

ssoConfigurationIdstring uuid required

sso_configuration_id is the SSO configuration to link (required for user provisioning)

Response

Success

tokenstring required

token is the bearer token for SCIM API authentication. This is only returned once during creation - store it securely.

Changes