ListSCIMConfigurations
client.organizations.scimConfigurations.list(ScimConfigurationListParams { token, pageSize, pagination } params, RequestOptionsoptions?): ScimConfigurationsPage<ScimConfiguration { id, createdAt, organizationId, 6 more } >
POST/gitpod.v1.OrganizationService/ListSCIMConfigurations
Lists SCIM configurations for an organization.
Use this method to:
- View all SCIM configurations
- Monitor provisioning status
- Audit SCIM settings
Examples
-
List SCIM configurations:
Shows all SCIM configurations for an organization.
pagination: pageSize: 20
ListSCIMConfigurations
import Gitpod from '@gitpod/sdk';
const client = new Gitpod({
bearerToken: process.env['GITPOD_API_KEY'], // This is the default and can be omitted
});
// Automatically fetches more pages as needed.
for await (const scimConfiguration of client.organizations.scimConfigurations.list({
pagination: { pageSize: 20 },
})) {
console.log(scimConfiguration.id);
}{
"pagination": {
"nextToken": "nextToken"
},
"scimConfigurations": [
{
"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
{
"pagination": {
"nextToken": "nextToken"
},
"scimConfigurations": [
{
"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"
}
]
}