云SSO支持的SCIM_2.0接口 返回示例 plaintext { "schemas": [ "urn:ietf:params:scim:api:messages:2.0:ListResponse" ], "totalResults": 1, "itemsPerPage": 100, "startIndex": 1, "resources": [ { "id": "c5545d61153f4d44a648f0cb9d83218d", "meta": { "resourceType": "Group", "created": "20251020T01:53:37Z", "lastModified": "20251020T01:53:37Z", "location": "/sso/api/scim/v2/Groups/c5545d61153f4d44a648f0cb9d83218d" }, "schemas": [ "urn:ietf:params:scim:schemas:core:2.0:Group" ], "displayName": "开发组" } ] } 更新用户组 功能描述 使用PUT方法全量更新用户组信息。 使用约束 {id}必传,为用户组的UUID PUT为覆盖原有属性,包括成员列表 如果提供members列表,会先删除所有现有成员,再添加新成员 请求示例 plaintext curl header 'Authorization: Bearer ' header "ContentType: application/scim+json" X PUT d '{ "schemas": ["urn:ietf:params:scim:schemas:core:2.0:Group"], "displayName": "开发组更新", "externalId": "externalgroup001", "members": [ { "value": "u00vrs1l19d6gbsi5", "$ref": "/scim/v2/Users/u00vrs1l19d6gbsi5", "type": "User" } ] }' 返回示例 plaintext { "id": "c5545d61153f4d44a648f0cb9d83218d", "externalId": "externalgroup001", "meta": { "resourceType": "Group", "created": "20251020T01:53:37Z", "lastModified": "20251020T01:57:21.071Z", "location": "/sso/api/scim/v2/Groups/c5545d61153f4d44a648f0cb9d83218d" }, "schemas": [ "urn:ietf:params:scim:schemas:core:2.0:Group" ], "displayName": "开发组更新" }