UpdateSCIMConfiguration
client.organizations.scimConfigurations.update(ScimConfigurationUpdateParams { scimConfigurationId, allowUnverifiedEmailAccountLinking, enabled, 2 more } body, RequestOptionsoptions?): ScimConfigurationUpdateResponse { scimConfiguration }
POST/gitpod.v1.OrganizationService/UpdateSCIMConfiguration
Updates a SCIM configuration.
Use this method to:
- Enable or disable SCIM provisioning
- Link or unlink SSO configuration
- Update configuration name
Examples
-
Disable SCIM:
Disables SCIM provisioning.
scimConfigurationId: "d2c94c27-3b76-4a42-b88c-95a85e392c68" enabled: false -
Link to SSO:
Links SCIM configuration to an SSO provider.
scimConfigurationId: "d2c94c27-3b76-4a42-b88c-95a85e392c68" ssoConfigurationId: "f53d2330-3795-4c5d-a1f3-453121af9c60"
UpdateSCIMConfiguration
import Gitpod from '@gitpod/sdk';
const client = new Gitpod({
bearerToken: process.env['GITPOD_API_KEY'], // This is the default and can be omitted
});
const scimConfiguration = await client.organizations.scimConfigurations.update({
scimConfigurationId: 'd2c94c27-3b76-4a42-b88c-95a85e392c68',
});
console.log(scimConfiguration.scimConfiguration);{
"scimConfiguration": {
"id": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"createdAt": "2019-12-27T18:11:19.117Z",
"organizationId": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"tokenExpiresAt": "2019-12-27T18:11:19.117Z",
"updatedAt": "2019-12-27T18:11:19.117Z",
"allowUnverifiedEmailAccountLinking": true,
"enabled": true,
"name": "name",
"ssoConfigurationId": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e"
}
}Returns Examples
{
"scimConfiguration": {
"id": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"createdAt": "2019-12-27T18:11:19.117Z",
"organizationId": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"tokenExpiresAt": "2019-12-27T18:11:19.117Z",
"updatedAt": "2019-12-27T18:11:19.117Z",
"allowUnverifiedEmailAccountLinking": true,
"enabled": true,
"name": "name",
"ssoConfigurationId": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e"
}
}