SCIM
您可以使用 SCIM API 控制和管理您的 GitHub 组织成员访问。
关于 SCIM API
组织的 SCIM 预配
SCIM API 由 SCIM 启用的身份提供程序 (IdP) 用来自动预配 GitHub 组织成员身份。 GitHub API 基于 2.0 版的 SCIM 标准。 IdP 应使用的 GitHub SCIM 端点是:https://api.github.com/scim/v2/organisation/{org}/。
注意:
- SCIM API 仅适用于使用启用了 SAML SSO 的 GitHub Enterprise Cloud 的单个组织。 有关 SCIM 的详细信息,请参阅“关于组织的 SCIM”。
- SCIM API 不能与企业帐户或 具有托管用户的组织 一起使用。
向 SCIM API 验证调用
您必须验证为 GitHub 组织的所有者才可使用其 SCIM API。 API 预期 OAuth 2.0 Bearer 令牌包含在授权标头中。 您也可以使用个人访问令牌,但必须先授权它与您的 SAML SSO 组织一起使用。
SAML 和 SCIM 数据的映射
SAML IdP 和 SCIM 客户端必须对每个用户使用匹配的 NameID 和 userName 值。 这允许通过 SAML 进行身份验证的用户链接到其预配的 SCIM 标识。
支持的 SCIM 用户属性
| 名称 | 类型 | 描述 |
|---|---|---|
userName | 字符串 | 用户的用户名。 |
name.givenName | 字符串 | 用户的名字 |
name.familyName | 字符串 | 用户的姓氏。 |
emails | 数组 | 用户电子邮件列表。 |
externalId | 字符串 | 此标识符由 SAML 提供程序生成,并且被 SAML 提供程序用作唯一 ID 来匹配 GitHub 用户。 您可以在 SAML 提供程序上查找用户的 externalID,或者使用 List SCIM 预配的身份端点并过滤其他已知的属性,如用户的 GitHub 用户名或电子邮件地址。 |
id | 字符串 | GitHub SCIM 端点生成的标识符。 |
active | 布尔值 | 用于表示身份是处于活动状态 (true) 还是应解除预配 (false)。 |
注:SCIM API 的端点 URL 区分大小写。 例如,Users 端点中的第一个字母必须大写:
GET /scim/v2/organizations/{org}/Users/{scim_user_id}
List SCIM provisioned identities
Retrieves a paginated list of all provisioned organization members, including pending invitations. If you provide the filter parameter, the resources for all matching provisions members are returned.
When a user with a SAML-provisioned external identity leaves (or is removed from) an organization, the account's metadata is immediately removed. However, the returned list of user accounts might not always match the organization or enterprise member list you see on GitHub. This can happen in certain cases where an external identity associated with an organization will not match an organization member:
- When a user with a SCIM-provisioned external identity is removed from an organization, the account's metadata is preserved to allow the user to re-join the organization in the future.
- When inviting a user to join an organization, you can expect to see their external identity in the results before they accept the invitation, or if the invitation is cancelled (or never accepted).
- When a user is invited over SCIM, an external identity is created that matches with the invitee's email address. However, this identity is only linked to a user account when the user accepts the invitation by going through SAML SSO.
The returned list of external identities can include an entry for a null user. These are unlinked SAML identities that are created when a user goes through the following Single Sign-On (SSO) process but does not sign in to their GitHub account after completing SSO:
-
The user is granted access by the IdP and is not a member of the GitHub organization.
-
The user attempts to access the GitHub organization and initiates the SAML SSO process, and is not currently signed in to their GitHub account.
-
After successfully authenticating with the SAML SSO IdP, the
nullexternal identity entry is created and the user is prompted to sign in to their GitHub account:- If the user signs in, their GitHub account is linked to this entry.
- If the user does not sign in (or does not create a new account when prompted), they are not added to the GitHub organization, and the external identity
nullentry remains in place.
参数
| 标头 |
|---|
| 名称, 类型, 描述 |
acceptstringSetting to |
| 路径参数 |
| 名称, 类型, 描述 |
orgstring必选The organization name. The name is not case sensitive. |
| 查询参数 |
| 名称, 类型, 描述 |
startIndexintegerUsed for pagination: the index of the first result to return. |
countintegerUsed for pagination: the number of results to return. |
filterstringFilters results using the equals query parameter operator (
To filter results for the identity with the email
|
HTTP 响应状态代码
| 状态代码 | 描述 |
|---|---|
200 | OK |
304 | Not modified |
400 | Bad Request |
403 | Forbidden |
404 | Resource not found |
429 | Too Many Requests |
代码示例
curl \
-H "Accept: application/scim+json" \
-H "Authorization: token <TOKEN>" \
https://api.github.com/scim/v2/organizations/ORG/UsersResponse with filter
Status: 200{
"schemas": [
"urn:ietf:params:scim:api:messages:2.0:ListResponse"
],
"totalResults": 1,
"itemsPerPage": 1,
"startIndex": 1,
"Resources": [
{
"schemas": [
"urn:ietf:params:scim:schemas:core:2.0:User"
],
"id": "5fc0c238-1112-11e8-8e45-920c87bdbd75",
"externalId": "00u1dhhb1fkIGP7RL1d8",
"userName": "octocat@github.com",
"displayName": "Mona Octocat",
"name": {
"givenName": "Mona",
"familyName": "Octocat",
"formatted": "Mona Octocat"
},
"emails": [
{
"value": "octocat@github.com",
"primary": true
}
],
"active": true,
"meta": {
"resourceType": "User",
"created": "2018-02-13T15:05:24.000-08:00",
"lastModified": "2018-02-13T15:05:55.000-08:00",
"location": "https://api.github.com/scim/v2/organizations/octo-org/Users/5fc0c238-1112-11e8-8e45-920c87bdbd75"
}
}
]
}Provision and invite a SCIM user
Provision organization membership for a user, and send an activation email to the email address.
参数
| 标头 | |||||||
|---|---|---|---|---|---|---|---|
| 名称, 类型, 描述 | |||||||
acceptstringSetting to | |||||||
| 路径参数 | |||||||
| 名称, 类型, 描述 | |||||||
orgstring必选The organization name. The name is not case sensitive. | |||||||
| 正文参数 | |||||||
| 名称, 类型, 描述 | |||||||
userNamestring必选Configured by the admin. Could be an email, login, or username | |||||||
displayNamestringThe name of the user, suitable for display to end-users | |||||||
nameobject必选 | |||||||
Properties of the | |||||||
| 名称, 类型, 描述 |
|---|
givenNamestring必选 |
familyNamestring必选 |
formattedstring |
emailsarray of objects必选user emails
Properties of theemailsitems
| 名称, 类型, 描述 |
|---|
valuestring必选 |
primaryboolean |
typestring |
schemasarray of stringsexternalIdstringgroupsarray of stringsactivebooleanHTTP 响应状态代码
| 状态代码 | 描述 |
|---|---|
201 | Created |
304 | Not modified |
400 | Bad Request |
403 | Forbidden |
404 | Resource not found |
409 | Conflict |
500 | Internal Error |
代码示例
curl \
-X POST \
-H "Accept: application/scim+json" \
-H "Authorization: token <TOKEN>" \
https://api.github.com/scim/v2/organizations/ORG/UsersResponse
Status: 201{
"schemas": [
"urn:ietf:params:scim:schemas:core:2.0:User"
],
"id": "edefdfedf-050c-11e7-8d32",
"externalId": "a7d0f98382",
"userName": "mona.octocat@okta.example.com",
"displayName": "Monalisa Octocat",
"name": {
"givenName": "Monalisa",
"familyName": "Octocat",
"formatted": "Monalisa Octocat"
},
"emails": [
{
"value": "mona.octocat@okta.example.com",
"primary": true
},
{
"value": "monalisa@octocat.github.com"
}
],
"active": true,
"meta": {
"resourceType": "User",
"created": "2017-03-09T16:11:13-05:00",
"lastModified": "2017-03-09T16:11:13-05:00",
"location": "https://api.github.com/scim/v2/organizations/octo-org/Users/edefdfedf-050c-11e7-8d32"
}
}Get SCIM provisioning information for a user
参数
| 标头 |
|---|
| 名称, 类型, 描述 |
acceptstringSetting to |
| 路径参数 |
| 名称, 类型, 描述 |
orgstring必选The organization name. The name is not case sensitive. |
scim_user_idstring必选The unique identifier of the SCIM user. |
HTTP 响应状态代码
| 状态代码 | 描述 |
|---|---|
200 | OK |
304 | Not modified |
403 | Forbidden |
404 | Resource not found |
代码示例
curl \
-H "Accept: application/scim+json" \
-H "Authorization: token <TOKEN>" \
https://api.github.com/scim/v2/organizations/ORG/Users/SCIM_USER_IDResponse
Status: 200{
"schemas": [
"urn:ietf:params:scim:schemas:core:2.0:User"
],
"id": "edefdfedf-050c-11e7-8d32",
"externalId": "a7d0f98382",
"userName": "mona.octocat@okta.example.com",
"displayName": "Monalisa Octocat",
"name": {
"givenName": "Monalisa",
"familyName": "Octocat",
"formatted": "Monalisa Octocat"
},
"emails": [
{
"value": "mona.octocat@okta.example.com",
"primary": true
},
{
"value": "monalisa@octocat.github.com"
}
],
"active": true,
"meta": {
"resourceType": "User",
"created": "2017-03-09T16:11:13-05:00",
"lastModified": "2017-03-09T16:11:13-05:00",
"location": "https://api.github.com/scim/v2/organizations/octo-org/Users/edefdfedf-050c-11e7-8d32"
}
}Update a provisioned organization membership
Replaces an existing provisioned user's information. You must provide all the information required for the user as if you were provisioning them for the first time. Any existing user information that you don't provide will be removed. If you want to only update a specific attribute, use the Update an attribute for a SCIM user endpoint instead.
You must at least provide the required values for the user: userName, name, and emails.
Warning: Setting active: false removes the user from the organization, deletes the external identity, and deletes the associated {scim_user_id}.
参数
| 标头 | |||||||
|---|---|---|---|---|---|---|---|
| 名称, 类型, 描述 | |||||||
acceptstringSetting to | |||||||
| 路径参数 | |||||||
| 名称, 类型, 描述 | |||||||
orgstring必选The organization name. The name is not case sensitive. | |||||||
scim_user_idstring必选The unique identifier of the SCIM user. | |||||||
| 正文参数 | |||||||
| 名称, 类型, 描述 | |||||||
schemasarray of strings | |||||||
displayNamestringThe name of the user, suitable for display to end-users | |||||||
externalIdstring | |||||||
groupsarray of strings | |||||||
activeboolean | |||||||
userNamestring必选Configured by the admin. Could be an email, login, or username | |||||||
nameobject必选 | |||||||
Properties of the | |||||||
| 名称, 类型, 描述 |
|---|
givenNamestring必选 |
familyNamestring必选 |
formattedstring |
emailsarray of objects必选user emails
Properties of theemailsitems
| 名称, 类型, 描述 |
|---|
typestring |
valuestring必选 |
primaryboolean |
HTTP 响应状态代码
| 状态代码 | 描述 |
|---|---|
200 | OK |
304 | Not modified |
403 | Forbidden |
404 | Resource not found |
代码示例
curl \
-X PUT \
-H "Accept: application/scim+json" \
-H "Authorization: token <TOKEN>" \
https://api.github.com/scim/v2/organizations/ORG/Users/SCIM_USER_IDResponse
Status: 200{
"schemas": [
"urn:ietf:params:scim:schemas:core:2.0:User"
],
"id": "edefdfedf-050c-11e7-8d32",
"externalId": "a7d0f98382",
"userName": "mona.octocat@okta.example.com",
"displayName": "Monalisa Octocat",
"name": {
"givenName": "Monalisa",
"familyName": "Octocat",
"formatted": "Monalisa Octocat"
},
"emails": [
{
"value": "mona.octocat@okta.example.com",
"primary": true
},
{
"value": "monalisa@octocat.github.com"
}
],
"active": true,
"meta": {
"resourceType": "User",
"created": "2017-03-09T16:11:13-05:00",
"lastModified": "2017-03-09T16:11:13-05:00",
"location": "https://api.github.com/scim/v2/organizations/octo-org/Users/edefdfedf-050c-11e7-8d32"
}
}Update an attribute for a SCIM user
Allows you to change a provisioned user's individual attributes. To change a user's values, you must provide a specific Operations JSON format that contains at least one of the add, remove, or replace operations. For examples and more information on the SCIM operations format, see the SCIM specification.
Note: Complicated SCIM path selectors that include filters are not supported. For example, a path selector defined as "path": "emails[type eq \"work\"]" will not work.
Warning: If you set active:false using the replace operation (as shown in the JSON example below), it removes the user from the organization, deletes the external identity, and deletes the associated :scim_user_id.
{
"Operations":[{
"op":"replace",
"value":{
"active":false
}
}]
}
参数
| 标头 | |||||||
|---|---|---|---|---|---|---|---|
| 名称, 类型, 描述 | |||||||
acceptstringSetting to | |||||||
| 路径参数 | |||||||
| 名称, 类型, 描述 | |||||||
orgstring必选The organization name. The name is not case sensitive. | |||||||
scim_user_idstring必选The unique identifier of the SCIM user. | |||||||
| 正文参数 | |||||||
| 名称, 类型, 描述 | |||||||
schemasarray of strings | |||||||
Operationsarray of objects必选Set of operations to be performed | |||||||
Properties of the | |||||||
| 名称, 类型, 描述 |
|---|
opstring必选可以是以下其中之一: |
pathstring |
valueobject or array or string or |
HTTP 响应状态代码
| 状态代码 | 描述 |
|---|---|
200 | OK |
304 | Not modified |
400 | Bad Request |
403 | Forbidden |
404 | Resource not found |
429 | Too Many Requests |
代码示例
curl \
-X PATCH \
-H "Accept: application/scim+json" \
-H "Authorization: token <TOKEN>" \
https://api.github.com/scim/v2/organizations/ORG/Users/SCIM_USER_IDResponse
Status: 200{
"schemas": [
"urn:ietf:params:scim:schemas:core:2.0:User"
],
"id": "edefdfedf-050c-11e7-8d32",
"externalId": "a7d0f98382",
"userName": "mona.octocat@okta.example.com",
"displayName": "Monalisa Octocat",
"name": {
"givenName": "Monalisa",
"familyName": "Octocat",
"formatted": "Monalisa Octocat"
},
"emails": [
{
"value": "mona.octocat@okta.example.com",
"primary": true
},
{
"value": "monalisa@octocat.github.com"
}
],
"active": true,
"meta": {
"resourceType": "User",
"created": "2017-03-09T16:11:13-05:00",
"lastModified": "2017-03-09T16:11:13-05:00",
"location": "https://api.github.com/scim/v2/organizations/octo-org/Users/edefdfedf-050c-11e7-8d32"
}
}Delete a SCIM user from an organization
参数
| 标头 |
|---|
| 名称, 类型, 描述 |
acceptstringSetting to |
| 路径参数 |
| 名称, 类型, 描述 |
orgstring必选The organization name. The name is not case sensitive. |
scim_user_idstring必选The unique identifier of the SCIM user. |
HTTP 响应状态代码
| 状态代码 | 描述 |
|---|---|
204 | No Content |
304 | Not modified |
403 | Forbidden |
404 | Resource not found |
代码示例
curl \
-X DELETE \
-H "Accept: application/vnd.github+json" \
-H "Authorization: token <TOKEN>" \
https://api.github.com/scim/v2/organizations/ORG/Users/SCIM_USER_IDResponse
Status: 204