Organizaciones
List organizations
Lists all organizations, in the order that they were created on GitHub.
Note: Pagination is powered exclusively by the since parameter. Use the Link header to get the URL for the next page of organizations.
get /organizationsParámetros
| Nombre | Tipo | In | Descripción |
|---|---|---|---|
accept | string | header | Setting to |
since | integer | query | An organization ID. Only return organizations with an ID greater than this ID. |
per_page | integer | query | Results per page (max 100) Predeterminado: |
Ejemplos de código
curl \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/organizations await octokit.request('GET /organizations')Response
Status: 200 OK [
{
"login": "github",
"id": 1,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjE=",
"url": "https://api.github.com/orgs/github",
"repos_url": "https://api.github.com/orgs/github/repos",
"events_url": "https://api.github.com/orgs/github/events",
"hooks_url": "https://api.github.com/orgs/github/hooks",
"issues_url": "https://api.github.com/orgs/github/issues",
"members_url": "https://api.github.com/orgs/github/members{/member}",
"public_members_url": "https://api.github.com/orgs/github/public_members{/member}",
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
"description": "A great organization"
}
]Not modified
Status: 304 Not ModifiedNotas
Get an organization
To see many of the organization response values, you need to be an authenticated organization owner with the admin:org scope. When the value of two_factor_requirement_enabled is true, the organization requires all members, billing managers, and outside collaborators to enable two-factor authentication.
GitHub Apps with the Organization plan permission can use this endpoint to retrieve information about an organization's GitHub plan. See "Authenticating with GitHub Apps" for details. For an example response, see 'Response with GitHub plan information' below."
get /orgs/{org}Parámetros
| Nombre | Tipo | In | Descripción |
|---|---|---|---|
accept | string | header | Setting to |
org | string | path |
Ejemplos de código
curl \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/orgs/ORG await octokit.request('GET /orgs/{org}', {
org: 'org'
})Default response
Status: 200 OK {
"login": "github",
"id": 1,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjE=",
"url": "https://api.github.com/orgs/github",
"repos_url": "https://api.github.com/orgs/github/repos",
"events_url": "https://api.github.com/orgs/github/events",
"hooks_url": "https://api.github.com/orgs/github/hooks",
"issues_url": "https://api.github.com/orgs/github/issues",
"members_url": "https://api.github.com/orgs/github/members{/member}",
"public_members_url": "https://api.github.com/orgs/github/public_members{/member}",
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
"description": "A great organization",
"name": "github",
"company": "GitHub",
"blog": "https://github.com/blog",
"location": "San Francisco",
"email": "octocat@github.com",
"twitter_username": "github",
"is_verified": true,
"has_organization_projects": true,
"has_repository_projects": true,
"public_repos": 2,
"public_gists": 1,
"followers": 20,
"following": 0,
"html_url": "https://github.com/octocat",
"created_at": "2008-01-14T04:33:35Z",
"updated_at": "2014-03-03T18:58:10Z",
"type": "Organization",
"total_private_repos": 100,
"owned_private_repos": 100,
"private_gists": 81,
"disk_usage": 10000,
"collaborators": 8,
"billing_email": "mona@github.com",
"plan": {
"name": "Medium",
"space": 400,
"private_repos": 20,
"filled_seats": 4,
"seats": 5
},
"default_repository_permission": "read",
"members_can_create_repositories": true,
"two_factor_requirement_enabled": true,
"members_allowed_repository_creation_type": "all",
"members_can_create_public_repositories": false,
"members_can_create_private_repositories": false,
"members_can_create_internal_repositories": false,
"members_can_create_pages": true,
"members_can_fork_private_repositories": false
}Notas
Error Codes
| HTTP Status Code | Descripción |
|---|---|
404 | Resource not found |
Update an organization
Parameter Deprecation Notice: GitHub will replace and discontinue members_allowed_repository_creation_type in favor of more granular permissions. The new input parameters are members_can_create_public_repositories, members_can_create_private_repositories for all organizations and members_can_create_internal_repositories for organizations associated with an enterprise account using GitHub Enterprise Cloud or GitHub Enterprise Server 2.20+. For more information, see the blog post.
Enables an authenticated organization owner with the admin:org scope to update the organization's profile and member privileges.
patch /orgs/{org}Parámetros
| Nombre | Tipo | In | Descripción |
|---|---|---|---|
accept | string | header | Setting to |
org | string | path | |
billing_email | string | body | Billing email address. This address is not publicized. |
company | string | body | The company name. |
email | string | body | The publicly visible email address. |
twitter_username | string | body | The Twitter username of the company. |
location | string | body | The location. |
name | string | body | The shorthand name of the company. |
description | string | body | The description of the company. |
has_organization_projects | boolean | body | Toggles whether an organization can use organization projects. |
has_repository_projects | boolean | body | Toggles whether repositories that belong to the organization can use repository projects. |
default_repository_permission | string | body | Default permission level members have for organization repositories: Predeterminado: |
members_can_create_repositories | boolean | body | Toggles the ability of non-admin organization members to create repositories. Can be one of: Predeterminado: |
members_can_create_internal_repositories | boolean | body | Toggles whether organization members can create internal repositories, which are visible to all enterprise members. You can only allow members to create internal repositories if your organization is associated with an enterprise account using GitHub Enterprise Cloud or GitHub Enterprise Server 2.20+. Can be one of: |
members_can_create_private_repositories | boolean | body | Toggles whether organization members can create private repositories, which are visible to organization members with permission. Can be one of: |
members_can_create_public_repositories | boolean | body | Toggles whether organization members can create public repositories, which are visible to anyone. Can be one of: |
members_allowed_repository_creation_type | string | body | Specifies which types of repositories non-admin organization members can create. Can be one of: |
members_can_create_pages | boolean | body | Toggles whether organization members can create GitHub Pages sites. Can be one of: Predeterminado: |
members_can_create_public_pages | boolean | body | Toggles whether organization members can create public GitHub Pages sites. Can be one of: Predeterminado: |
members_can_create_private_pages | boolean | body | Toggles whether organization members can create private GitHub Pages sites. Can be one of: Predeterminado: |
members_can_fork_private_repositories | boolean | body | Toggles whether organization members can fork private organization repositories. Can be one of: |
blog | string | body |
Ejemplos de código
curl \
-X PATCH \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/orgs/ORG \
-d '{"billing_email":"billing_email"}' await octokit.request('PATCH /orgs/{org}', {
org: 'org',
billing_email: 'billing_email'
})Response
Status: 200 OK {
"login": "github",
"id": 1,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjE=",
"url": "https://api.github.com/orgs/github",
"repos_url": "https://api.github.com/orgs/github/repos",
"events_url": "https://api.github.com/orgs/github/events",
"hooks_url": "https://api.github.com/orgs/github/hooks",
"issues_url": "https://api.github.com/orgs/github/issues",
"members_url": "https://api.github.com/orgs/github/members{/member}",
"public_members_url": "https://api.github.com/orgs/github/public_members{/member}",
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
"description": "A great organization",
"name": "github",
"company": "GitHub",
"blog": "https://github.com/blog",
"location": "San Francisco",
"email": "octocat@github.com",
"twitter_username": "github",
"is_verified": true,
"has_organization_projects": true,
"has_repository_projects": true,
"public_repos": 2,
"public_gists": 1,
"followers": 20,
"following": 0,
"html_url": "https://github.com/octocat",
"created_at": "2008-01-14T04:33:35Z",
"type": "Organization",
"total_private_repos": 100,
"owned_private_repos": 100,
"private_gists": 81,
"disk_usage": 10000,
"collaborators": 8,
"billing_email": "mona@github.com",
"plan": {
"name": "Medium",
"space": 400,
"private_repos": 20
},
"default_repository_permission": "read",
"members_can_create_repositories": true,
"two_factor_requirement_enabled": true,
"members_allowed_repository_creation_type": "all",
"members_can_create_public_repositories": false,
"members_can_create_private_repositories": false,
"members_can_create_internal_repositories": false,
"members_can_create_pages": true,
"members_can_create_public_pages": true,
"members_can_create_private_pages": true,
"members_can_fork_private_repositories": false,
"updated_at": "2014-03-03T18:58:10Z"
}Notas
Error Codes
| HTTP Status Code | Descripción |
|---|---|
409 | Conflict |
422 | Validation failed |
Get the audit log for an organization
Gets the audit log for an organization. For more information, see "Reviewing the audit log for your organization."
This endpoint is available for organizations on GitHub Enterprise Cloud. To use this endpoint, you must be an organization owner, and you must use an access token with the admin:org scope. GitHub Apps must have the organization_administration read permission to use this endpoint.
By default, the response includes up to 30 events from the past three months. Use the phrase parameter to filter results and retrieve older events. For example, use the phrase parameter with the created qualifier to filter events based on when the events occurred. For more information, see "Reviewing the audit log for your organization."
Use pagination to retrieve fewer or more than 30 events. For more information, see "Resources in the REST API."
get /orgs/{org}/audit-logParámetros
| Nombre | Tipo | In | Descripción |
|---|---|---|---|
accept | string | header | Setting to |
org | string | path | |
phrase | string | query | A search phrase. For more information, see Searching the audit log. |
include | string | query | The event types to include:
The default is |
after | string | query | A cursor, as given in the Link header. If specified, the query only searches for events after this cursor. |
before | string | query | A cursor, as given in the Link header. If specified, the query only searches for events before this cursor. |
order | string | query | The order of audit log events. To list newest events first, specify The default is |
per_page | integer | query | Results per page (max 100) Predeterminado: |
Ejemplos de código
curl \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/orgs/ORG/audit-log await octokit.request('GET /orgs/{org}/audit-log', {
org: 'org'
})Response
Status: 200 OK [
{
"@timestamp": 1606929874512,
"action": "team.add_member",
"actor": "octocat",
"created_at": 1606929874512,
"_document_id": "xJJFlFOhQ6b-5vaAFy9Rjw",
"org": "octo-corp",
"team": "octo-corp/example-team",
"user": "monalisa"
},
{
"@timestamp": 1606507117008,
"action": "org.create",
"actor": "octocat",
"created_at": 1606507117008,
"_document_id": "Vqvg6kZ4MYqwWRKFDzlMoQ",
"org": "octocat-test-org"
},
{
"@timestamp": 1605719148837,
"action": "repo.destroy",
"actor": "monalisa",
"created_at": 1605719148837,
"_document_id": "LwW2vpJZCDS-WUmo9Z-ifw",
"org": "mona-org",
"repo": "mona-org/mona-test-repo",
"visibility": "private"
}
]Notas
List SAML SSO authorizations for an organization
Listing and deleting credential authorizations is available to organizations with GitHub Enterprise Cloud. For more information, see GitHub's products.
An authenticated organization owner with the read:org scope can list all credential authorizations for an organization that uses SAML single sign-on (SSO). The credentials are either personal access tokens or SSH keys that organization members have authorized for the organization. For more information, see About authentication with SAML single sign-on.
get /orgs/{org}/credential-authorizationsParámetros
| Nombre | Tipo | In | Descripción |
|---|---|---|---|
accept | string | header | Setting to |
org | string | path | |
per_page | integer | query | Results per page (max 100) Predeterminado: |
page | integer | query | Page token |
login | string | query | Limits the list of credentials authorizations for an organization to a specific login |
Ejemplos de código
curl \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/orgs/ORG/credential-authorizations await octokit.request('GET /orgs/{org}/credential-authorizations', {
org: 'org'
})Response
Status: 200 OK [
{
"login": "octocat",
"credential_id": 161195,
"credential_type": "personal access token",
"token_last_eight": "71c3fc11",
"credential_authorized_at": "2011-01-26T19:06:43Z",
"authorized_credential_expires_at": "2011-02-25T19:06:43Z",
"scopes": [
"user",
"repo"
]
},
{
"login": "hubot",
"credential_id": 161196,
"credential_type": "personal access token",
"token_last_eight": "Ae178B4a",
"credential_authorized_at": "2019-03-29T19:06:43Z",
"authorized_credential_expires_at": "2019-04-28T19:06:43Z",
"scopes": [
"repo"
]
}
]Notas
Remove a SAML SSO authorization for an organization
Listing and deleting credential authorizations is available to organizations with GitHub Enterprise Cloud. For more information, see GitHub's products.
An authenticated organization owner with the admin:org scope can remove a credential authorization for an organization that uses SAML SSO. Once you remove someone's credential authorization, they will need to create a new personal access token or SSH key and authorize it for the organization they want to access.
delete /orgs/{org}/credential-authorizations/{credential_id}Parámetros
| Nombre | Tipo | In | Descripción |
|---|---|---|---|
accept | string | header | Setting to |
org | string | path | |
credential_id | integer | path |
Ejemplos de código
curl \
-X DELETE \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/orgs/ORG/credential-authorizations/42 await octokit.request('DELETE /orgs/{org}/credential-authorizations/{credential_id}', {
org: 'org',
credential_id: 42
})Response
Status: 204 No ContentNotas
Error Codes
| HTTP Status Code | Descripción |
|---|---|
404 | Resource not found |
List app installations for an organization
Lists all GitHub Apps in an organization. The installation count includes all GitHub Apps installed on repositories in the organization. You must be an organization owner with admin:read scope to use this endpoint.
get /orgs/{org}/installationsParámetros
| Nombre | Tipo | In | Descripción |
|---|---|---|---|
accept | string | header | Setting to |
org | string | path | |
per_page | integer | query | Results per page (max 100) Predeterminado: |
page | integer | query | Page number of the results to fetch. Predeterminado: |
Ejemplos de código
curl \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/orgs/ORG/installations await octokit.request('GET /orgs/{org}/installations', {
org: 'org'
})Response
Status: 200 OK {
"total_count": 1,
"installations": [
{
"id": 25381,
"account": {
"login": "octo-org",
"id": 6811672,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjY4MTE2NzI=",
"avatar_url": "https://avatars3.githubusercontent.com/u/6811672?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/octo-org",
"html_url": "https://github.com/octo-org",
"followers_url": "https://api.github.com/users/octo-org/followers",
"following_url": "https://api.github.com/users/octo-org/following{/other_user}",
"gists_url": "https://api.github.com/users/octo-org/gists{/gist_id}",
"starred_url": "https://api.github.com/users/octo-org/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/octo-org/subscriptions",
"organizations_url": "https://api.github.com/users/octo-org/orgs",
"repos_url": "https://api.github.com/users/octo-org/repos",
"events_url": "https://api.github.com/users/octo-org/events{/privacy}",
"received_events_url": "https://api.github.com/users/octo-org/received_events",
"type": "Organization",
"site_admin": false
},
"repository_selection": "selected",
"access_tokens_url": "https://api.github.com/app/installations/25381/access_tokens",
"repositories_url": "https://api.github.com/installation/repositories",
"html_url": "https://github.com/organizations/octo-org/settings/installations/25381",
"app_id": 2218,
"target_id": 6811672,
"target_type": "Organization",
"permissions": {
"deployments": "write",
"metadata": "read",
"pull_requests": "read",
"statuses": "read"
},
"events": [
"deployment",
"deployment_status"
],
"created_at": "2017-05-16T08:47:09.000-07:00",
"updated_at": "2017-06-06T11:23:23.000-07:00",
"single_file_name": "config.yml",
"has_multiple_single_files": true,
"single_file_paths": [
"config.yml",
".github/issue_TEMPLATE.md"
],
"app_slug": "github-actions",
"suspended_at": null,
"suspended_by": null
}
]
}Notas
List organizations for the authenticated user
List organizations for the authenticated user.
OAuth scope requirements
This only lists organizations that your authorization allows you to operate on in some way (e.g., you can list teams with read:org scope, you can publicize your organization membership with user scope, etc.). Therefore, this API requires at least user or read:org scope. OAuth requests with insufficient scope receive a 403 Forbidden response.
get /user/orgsParámetros
| Nombre | Tipo | In | Descripción |
|---|---|---|---|
accept | string | header | Setting to |
per_page | integer | query | Results per page (max 100) Predeterminado: |
page | integer | query | Page number of the results to fetch. Predeterminado: |
Ejemplos de código
curl \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/user/orgs await octokit.request('GET /user/orgs')Response
Status: 200 OK [
{
"login": "github",
"id": 1,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjE=",
"url": "https://api.github.com/orgs/github",
"repos_url": "https://api.github.com/orgs/github/repos",
"events_url": "https://api.github.com/orgs/github/events",
"hooks_url": "https://api.github.com/orgs/github/hooks",
"issues_url": "https://api.github.com/orgs/github/issues",
"members_url": "https://api.github.com/orgs/github/members{/member}",
"public_members_url": "https://api.github.com/orgs/github/public_members{/member}",
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
"description": "A great organization"
}
]Not modified
Status: 304 Not ModifiedError Codes
| HTTP Status Code | Descripción |
|---|---|
401 | Requires authentication |
403 | Forbidden |
List organizations for a user
List public organization memberships for the specified user.
This method only lists public memberships, regardless of authentication. If you need to fetch all of the organization memberships (public and private) for the authenticated user, use the List organizations for the authenticated user API instead.
get /users/{username}/orgsParámetros
| Nombre | Tipo | In | Descripción |
|---|---|---|---|
accept | string | header | Setting to |
username | string | path | |
per_page | integer | query | Results per page (max 100) Predeterminado: |
page | integer | query | Page number of the results to fetch. Predeterminado: |
Ejemplos de código
curl \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/users/USERNAME/orgs await octokit.request('GET /users/{username}/orgs', {
username: 'username'
})Response
Status: 200 OK [
{
"login": "github",
"id": 1,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjE=",
"url": "https://api.github.com/orgs/github",
"repos_url": "https://api.github.com/orgs/github/repos",
"events_url": "https://api.github.com/orgs/github/events",
"hooks_url": "https://api.github.com/orgs/github/hooks",
"issues_url": "https://api.github.com/orgs/github/issues",
"members_url": "https://api.github.com/orgs/github/members{/member}",
"public_members_url": "https://api.github.com/orgs/github/public_members{/member}",
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
"description": "A great organization"
}
]Notas
Bloquear usuarios
El token que se utiliza para autenticar la llamada debe tener el alcance de admin:org para poder hacer cualquier llamada de bloqueo para una organización. De lo contrario, la respuesta devolverá un HTTP 404.
List users blocked by an organization
List the users blocked by an organization.
get /orgs/{org}/blocksParámetros
| Nombre | Tipo | In | Descripción |
|---|---|---|---|
accept | string | header | Setting to |
org | string | path |
Ejemplos de código
curl \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/orgs/ORG/blocks await octokit.request('GET /orgs/{org}/blocks', {
org: 'org'
})Response
Status: 200 OK [
{
"login": "octocat",
"id": 1,
"node_id": "MDQ6VXNlcjE=",
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
"gravatar_id": "",
"url": "https://api.github.com/users/octocat",
"html_url": "https://github.com/octocat",
"followers_url": "https://api.github.com/users/octocat/followers",
"following_url": "https://api.github.com/users/octocat/following{/other_user}",
"gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
"starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
"organizations_url": "https://api.github.com/users/octocat/orgs",
"repos_url": "https://api.github.com/users/octocat/repos",
"events_url": "https://api.github.com/users/octocat/events{/privacy}",
"received_events_url": "https://api.github.com/users/octocat/received_events",
"type": "User",
"site_admin": false
}
]Notas
Error Codes
| HTTP Status Code | Descripción |
|---|---|
415 | Preview header missing |
Check if a user is blocked by an organization
get /orgs/{org}/blocks/{username}Parámetros
| Nombre | Tipo | In | Descripción |
|---|---|---|---|
accept | string | header | Setting to |
org | string | path | |
username | string | path |
Ejemplos de código
curl \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/orgs/ORG/blocks/USERNAME await octokit.request('GET /orgs/{org}/blocks/{username}', {
org: 'org',
username: 'username'
})If the user is blocked:
Status: 204 No ContentNotas
Error Codes
| HTTP Status Code | Descripción |
|---|---|
404 | If the user is not blocked: |
Block a user from an organization
put /orgs/{org}/blocks/{username}Parámetros
| Nombre | Tipo | In | Descripción |
|---|---|---|---|
accept | string | header | Setting to |
org | string | path | |
username | string | path |
Ejemplos de código
curl \
-X PUT \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/orgs/ORG/blocks/USERNAME await octokit.request('PUT /orgs/{org}/blocks/{username}', {
org: 'org',
username: 'username'
})Response
Status: 204 No ContentNotas
Error Codes
| HTTP Status Code | Descripción |
|---|---|
422 | Validation failed |
Unblock a user from an organization
delete /orgs/{org}/blocks/{username}Parámetros
| Nombre | Tipo | In | Descripción |
|---|---|---|---|
accept | string | header | Setting to |
org | string | path | |
username | string | path |
Ejemplos de código
curl \
-X DELETE \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/orgs/ORG/blocks/USERNAME await octokit.request('DELETE /orgs/{org}/blocks/{username}', {
org: 'org',
username: 'username'
})Response
Status: 204 No ContentNotas
List custom repository roles in an organization
List the custom repository roles available in this organization. In order to see custom repository roles in an organization, the authenticated user must be an organization owner.
For more information on custom repository roles, see "Managing custom repository roles for an organization".
get /organizations/{organization_id}/custom_rolesParámetros
| Nombre | Tipo | In | Descripción |
|---|---|---|---|
accept | string | header | Setting to |
organization_id | string | path |
Ejemplos de código
curl \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/organizations/ORGANIZATION_ID/custom_roles await octokit.request('GET /organizations/{organization_id}/custom_roles', {
organization_id: 'organization_id'
})Response - list of custom role names
Status: 200 OK {
"total_count": 2,
"custom_roles": [
{
"id": 8030,
"name": "Developer"
},
{
"id": 8031,
"name": "Designer"
}
]
}Notas
List failed organization invitations
The return hash contains failed_at and failed_reason fields which represent the time at which the invitation failed and the reason for the failure.
get /orgs/{org}/failed_invitationsParámetros
| Nombre | Tipo | In | Descripción |
|---|---|---|---|
accept | string | header | Setting to |
org | string | path | |
per_page | integer | query | Results per page (max 100) Predeterminado: |
page | integer | query | Page number of the results to fetch. Predeterminado: |
Ejemplos de código
curl \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/orgs/ORG/failed_invitations await octokit.request('GET /orgs/{org}/failed_invitations', {
org: 'org'
})Response
Status: 200 OK [
{
"id": 1,
"login": "monalisa",
"node_id": "MDQ6VXNlcjE=",
"email": "octocat@github.com",
"role": "direct_member",
"created_at": "2016-11-30T06:46:10-08:00",
"failed_at": "",
"failed_reason": "",
"inviter": {
"login": "other_user",
"id": 1,
"node_id": "MDQ6VXNlcjE=",
"avatar_url": "https://github.com/images/error/other_user_happy.gif",
"gravatar_id": "",
"url": "https://api.github.com/users/other_user",
"html_url": "https://github.com/other_user",
"followers_url": "https://api.github.com/users/other_user/followers",
"following_url": "https://api.github.com/users/other_user/following{/other_user}",
"gists_url": "https://api.github.com/users/other_user/gists{/gist_id}",
"starred_url": "https://api.github.com/users/other_user/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/other_user/subscriptions",
"organizations_url": "https://api.github.com/users/other_user/orgs",
"repos_url": "https://api.github.com/users/other_user/repos",
"events_url": "https://api.github.com/users/other_user/events{/privacy}",
"received_events_url": "https://api.github.com/users/other_user/received_events",
"type": "User",
"site_admin": false
},
"team_count": 2,
"invitation_teams_url": "https://api.github.com/organizations/2/invitations/1/teams"
}
]Notas
Error Codes
| HTTP Status Code | Descripción |
|---|---|
404 | Resource not found |
List pending organization invitations
The return hash contains a role field which refers to the Organization Invitation role and will be one of the following values: direct_member, admin, billing_manager, hiring_manager, or reinstate. If the invitee is not a GitHub member, the login field in the return hash will be null.
get /orgs/{org}/invitationsParámetros
| Nombre | Tipo | In | Descripción |
|---|---|---|---|
accept | string | header | Setting to |
org | string | path | |
per_page | integer | query | Results per page (max 100) Predeterminado: |
page | integer | query | Page number of the results to fetch. Predeterminado: |
Ejemplos de código
curl \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/orgs/ORG/invitations await octokit.request('GET /orgs/{org}/invitations', {
org: 'org'
})Response
Status: 200 OK [
{
"id": 1,
"login": "monalisa",
"node_id": "MDQ6VXNlcjE=",
"email": "octocat@github.com",
"role": "direct_member",
"created_at": "2016-11-30T06:46:10-08:00",
"failed_at": "",
"failed_reason": "",
"inviter": {
"login": "other_user",
"id": 1,
"node_id": "MDQ6VXNlcjE=",
"avatar_url": "https://github.com/images/error/other_user_happy.gif",
"gravatar_id": "",
"url": "https://api.github.com/users/other_user",
"html_url": "https://github.com/other_user",
"followers_url": "https://api.github.com/users/other_user/followers",
"following_url": "https://api.github.com/users/other_user/following{/other_user}",
"gists_url": "https://api.github.com/users/other_user/gists{/gist_id}",
"starred_url": "https://api.github.com/users/other_user/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/other_user/subscriptions",
"organizations_url": "https://api.github.com/users/other_user/orgs",
"repos_url": "https://api.github.com/users/other_user/repos",
"events_url": "https://api.github.com/users/other_user/events{/privacy}",
"received_events_url": "https://api.github.com/users/other_user/received_events",
"type": "User",
"site_admin": false
},
"team_count": 2,
"invitation_teams_url": "https://api.github.com/organizations/2/invitations/1/teams"
}
]Notas
Error Codes
| HTTP Status Code | Descripción |
|---|---|
404 | Resource not found |
Create an organization invitation
Invite people to an organization by using their GitHub user ID or their email address. In order to create invitations in an organization, the authenticated user must be an organization owner.
This endpoint triggers notifications. Creating content too quickly using this endpoint may result in secondary rate limiting. See "Secondary rate limits" and "Dealing with secondary rate limits" for details.
post /orgs/{org}/invitationsParámetros
| Nombre | Tipo | In | Descripción |
|---|---|---|---|
accept | string | header | Setting to |
org | string | path | |
invitee_id | integer | body | Required unless you provide |
email | string | body | Required unless you provide |
role | string | body | Specify role for new member. Can be one of: Predeterminado: |
team_ids | array of integers | body | Specify IDs for the teams you want to invite new members to. |
Ejemplos de código
curl \
-X POST \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/orgs/ORG/invitations \
-d '{"invitee_id":42}' await octokit.request('POST /orgs/{org}/invitations', {
org: 'org',
invitee_id: 42
})Response
Status: 201 Created {
"id": 1,
"login": "monalisa",
"node_id": "MDQ6VXNlcjE=",
"email": "octocat@github.com",
"role": "direct_member",
"created_at": "2016-11-30T06:46:10-08:00",
"inviter": {
"login": "other_user",
"id": 1,
"node_id": "MDQ6VXNlcjE=",
"avatar_url": "https://github.com/images/error/other_user_happy.gif",
"gravatar_id": "",
"url": "https://api.github.com/users/other_user",
"html_url": "https://github.com/other_user",
"followers_url": "https://api.github.com/users/other_user/followers",
"following_url": "https://api.github.com/users/other_user/following{/other_user}",
"gists_url": "https://api.github.com/users/other_user/gists{/gist_id}",
"starred_url": "https://api.github.com/users/other_user/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/other_user/subscriptions",
"organizations_url": "https://api.github.com/users/other_user/orgs",
"repos_url": "https://api.github.com/users/other_user/repos",
"events_url": "https://api.github.com/users/other_user/events{/privacy}",
"received_events_url": "https://api.github.com/users/other_user/received_events",
"type": "User",
"site_admin": false
},
"team_count": 2,
"invitation_teams_url": "https://api.github.com/organizations/2/invitations/1/teams"
}Notas
Error Codes
| HTTP Status Code | Descripción |
|---|---|
404 | Resource not found |
422 | Validation failed |
Cancel an organization invitation
Cancel an organization invitation. In order to cancel an organization invitation, the authenticated user must be an organization owner.
This endpoint triggers notifications.
delete /orgs/{org}/invitations/{invitation_id}Parámetros
| Nombre | Tipo | In | Descripción |
|---|---|---|---|
accept | string | header | Setting to |
org | string | path | |
invitation_id | integer | path | invitation_id parameter |
Ejemplos de código
curl \
-X DELETE \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/orgs/ORG/invitations/42 await octokit.request('DELETE /orgs/{org}/invitations/{invitation_id}', {
org: 'org',
invitation_id: 42
})Response
Status: 204 No ContentNotas
Error Codes
| HTTP Status Code | Descripción |
|---|---|
404 | Resource not found |
422 | Validation failed |
List organization invitation teams
List all teams associated with an invitation. In order to see invitations in an organization, the authenticated user must be an organization owner.
get /orgs/{org}/invitations/{invitation_id}/teamsParámetros
| Nombre | Tipo | In | Descripción |
|---|---|---|---|
accept | string | header | Setting to |
org | string | path | |
invitation_id | integer | path | invitation_id parameter |
per_page | integer | query | Results per page (max 100) Predeterminado: |
page | integer | query | Page number of the results to fetch. Predeterminado: |
Ejemplos de código
curl \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/orgs/ORG/invitations/42/teams await octokit.request('GET /orgs/{org}/invitations/{invitation_id}/teams', {
org: 'org',
invitation_id: 42
})Response
Status: 200 OK [
{
"id": 1,
"node_id": "MDQ6VGVhbTE=",
"url": "https://api.github.com/teams/1",
"html_url": "https://github.com/orgs/github/teams/justice-league",
"name": "Justice League",
"slug": "justice-league",
"description": "A great team.",
"privacy": "closed",
"permission": "admin",
"members_url": "https://api.github.com/teams/1/members{/member}",
"repositories_url": "https://api.github.com/teams/1/repos",
"parent": null
}
]Notas
Error Codes
| HTTP Status Code | Descripción |
|---|---|
404 | Resource not found |
List organization members
List all users who are members of an organization. If the authenticated user is also a member of this organization then both concealed and public members will be returned.
get /orgs/{org}/membersParámetros
| Nombre | Tipo | In | Descripción |
|---|---|---|---|
accept | string | header | Setting to |
org | string | path | |
filter | string | query | Filter members returned in the list. Can be one of: Predeterminado: |
role | string | query | Filter members returned by their role. Can be one of: Predeterminado: |
per_page | integer | query | Results per page (max 100) Predeterminado: |
page | integer | query | Page number of the results to fetch. Predeterminado: |
Ejemplos de código
curl \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/orgs/ORG/members await octokit.request('GET /orgs/{org}/members', {
org: 'org'
})Response
Status: 200 OK [
{
"login": "octocat",
"id": 1,
"node_id": "MDQ6VXNlcjE=",
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
"gravatar_id": "",
"url": "https://api.github.com/users/octocat",
"html_url": "https://github.com/octocat",
"followers_url": "https://api.github.com/users/octocat/followers",
"following_url": "https://api.github.com/users/octocat/following{/other_user}",
"gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
"starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
"organizations_url": "https://api.github.com/users/octocat/orgs",
"repos_url": "https://api.github.com/users/octocat/repos",
"events_url": "https://api.github.com/users/octocat/events{/privacy}",
"received_events_url": "https://api.github.com/users/octocat/received_events",
"type": "User",
"site_admin": false
}
]Response if requester is not an organization member
Status: 302 FoundNotas
Error Codes
| HTTP Status Code | Descripción |
|---|---|
422 | Validation failed |
Check organization membership for a user
Check if a user is, publicly or privately, a member of the organization.
get /orgs/{org}/members/{username}Parámetros
| Nombre | Tipo | In | Descripción |
|---|---|---|---|
accept | string | header | Setting to |
org | string | path | |
username | string | path |
Ejemplos de código
curl \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/orgs/ORG/members/USERNAME await octokit.request('GET /orgs/{org}/members/{username}', {
org: 'org',
username: 'username'
})Response if requester is an organization member and user is a member
Status: 204 No ContentResponse if requester is not an organization member
Status: 302 FoundNotas
Error Codes
| HTTP Status Code | Descripción |
|---|---|
404 | Not Found if requester is an organization member and user is not a member |
Remove an organization member
Removing a user from this list will remove them from all teams and they will no longer have any access to the organization's repositories.
delete /orgs/{org}/members/{username}Parámetros
| Nombre | Tipo | In | Descripción |
|---|---|---|---|
accept | string | header | Setting to |
org | string | path | |
username | string | path |
Ejemplos de código
curl \
-X DELETE \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/orgs/ORG/members/USERNAME await octokit.request('DELETE /orgs/{org}/members/{username}', {
org: 'org',
username: 'username'
})Response
Status: 204 No ContentNotas
Error Codes
| HTTP Status Code | Descripción |
|---|---|
403 | Forbidden |
Get organization membership for a user
In order to get a user's membership with an organization, the authenticated user must be an organization member. The state parameter in the response can be used to identify the user's membership status.
get /orgs/{org}/memberships/{username}Parámetros
| Nombre | Tipo | In | Descripción |
|---|---|---|---|
accept | string | header | Setting to |
org | string | path | |
username | string | path |
Ejemplos de código
curl \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/orgs/ORG/memberships/USERNAME await octokit.request('GET /orgs/{org}/memberships/{username}', {
org: 'org',
username: 'username'
})Response if user has an active admin membership with organization
Status: 200 OK {
"url": "https://api.github.com/orgs/octocat/memberships/defunkt",
"state": "active",
"role": "admin",
"organization_url": "https://api.github.com/orgs/octocat",
"organization": {
"login": "github",
"id": 1,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjE=",
"url": "https://api.github.com/orgs/github",
"repos_url": "https://api.github.com/orgs/github/repos",
"events_url": "https://api.github.com/orgs/github/events",
"hooks_url": "https://api.github.com/orgs/github/hooks",
"issues_url": "https://api.github.com/orgs/github/issues",
"members_url": "https://api.github.com/orgs/github/members{/member}",
"public_members_url": "https://api.github.com/orgs/github/public_members{/member}",
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
"description": "A great organization"
},
"user": {
"login": "octocat",
"id": 1,
"node_id": "MDQ6VXNlcjE=",
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
"gravatar_id": "",
"url": "https://api.github.com/users/octocat",
"html_url": "https://github.com/octocat",
"followers_url": "https://api.github.com/users/octocat/followers",
"following_url": "https://api.github.com/users/octocat/following{/other_user}",
"gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
"starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
"organizations_url": "https://api.github.com/users/octocat/orgs",
"repos_url": "https://api.github.com/users/octocat/repos",
"events_url": "https://api.github.com/users/octocat/events{/privacy}",
"received_events_url": "https://api.github.com/users/octocat/received_events",
"type": "User",
"site_admin": false
}
}Notas
Error Codes
| HTTP Status Code | Descripción |
|---|---|
403 | Forbidden |
404 | Resource not found |
Set organization membership for a user
Only authenticated organization owners can add a member to the organization or update the member's role.
- If the authenticated user is adding a member to the organization, the invited user will receive an email inviting them to the organization. The user's membership status will be
pendinguntil they accept the invitation. - Authenticated users can update a user's membership by passing the
roleparameter. If the authenticated user changes a member's role toadmin, the affected user will receive an email notifying them that they've been made an organization owner. If the authenticated user changes an owner's role tomember, no email will be sent.
Rate limits
To prevent abuse, the authenticated user is limited to 50 organization invitations per 24 hour period. If the organization is more than one month old or on a paid plan, the limit is 500 invitations per 24 hour period.
put /orgs/{org}/memberships/{username}Parámetros
| Nombre | Tipo | In | Descripción |
|---|---|---|---|
accept | string | header | Setting to |
org | string | path | |
username | string | path | |
role | string | body | The role to give the user in the organization. Can be one of: Predeterminado: |
Ejemplos de código
curl \
-X PUT \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/orgs/ORG/memberships/USERNAME \
-d '{"role":"role"}' await octokit.request('PUT /orgs/{org}/memberships/{username}', {
org: 'org',
username: 'username',
role: 'role'
})Response if user has an active admin membership with organization
Status: 200 OK {
"url": "https://api.github.com/orgs/octocat/memberships/defunkt",
"state": "active",
"role": "admin",
"organization_url": "https://api.github.com/orgs/octocat",
"organization": {
"login": "github",
"id": 1,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjE=",
"url": "https://api.github.com/orgs/github",
"repos_url": "https://api.github.com/orgs/github/repos",
"events_url": "https://api.github.com/orgs/github/events",
"hooks_url": "https://api.github.com/orgs/github/hooks",
"issues_url": "https://api.github.com/orgs/github/issues",
"members_url": "https://api.github.com/orgs/github/members{/member}",
"public_members_url": "https://api.github.com/orgs/github/public_members{/member}",
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
"description": "A great organization"
},
"user": {
"login": "octocat",
"id": 1,
"node_id": "MDQ6VXNlcjE=",
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
"gravatar_id": "",
"url": "https://api.github.com/users/octocat",
"html_url": "https://github.com/octocat",
"followers_url": "https://api.github.com/users/octocat/followers",
"following_url": "https://api.github.com/users/octocat/following{/other_user}",
"gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
"starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
"organizations_url": "https://api.github.com/users/octocat/orgs",
"repos_url": "https://api.github.com/users/octocat/repos",
"events_url": "https://api.github.com/users/octocat/events{/privacy}",
"received_events_url": "https://api.github.com/users/octocat/received_events",
"type": "User",
"site_admin": false
}
}Notas
Error Codes
| HTTP Status Code | Descripción |
|---|---|
403 | Forbidden |
422 | Validation failed |
Remove organization membership for a user
In order to remove a user's membership with an organization, the authenticated user must be an organization owner.
If the specified user is an active member of the organization, this will remove them from the organization. If the specified user has been invited to the organization, this will cancel their invitation. The specified user will receive an email notification in both cases.
delete /orgs/{org}/memberships/{username}Parámetros
| Nombre | Tipo | In | Descripción |
|---|---|---|---|
accept | string | header | Setting to |
org | string | path | |
username | string | path |
Ejemplos de código
curl \
-X DELETE \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/orgs/ORG/memberships/USERNAME await octokit.request('DELETE /orgs/{org}/memberships/{username}', {
org: 'org',
username: 'username'
})Response
Status: 204 No ContentNotas
Error Codes
| HTTP Status Code | Descripción |
|---|---|
403 | Forbidden |
404 | Resource not found |
List public organization members
Members of an organization can choose to have their membership publicized or not.
get /orgs/{org}/public_membersParámetros
| Nombre | Tipo | In | Descripción |
|---|---|---|---|
accept | string | header | Setting to |
org | string | path | |
per_page | integer | query | Results per page (max 100) Predeterminado: |
page | integer | query | Page number of the results to fetch. Predeterminado: |
Ejemplos de código
curl \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/orgs/ORG/public_members await octokit.request('GET /orgs/{org}/public_members', {
org: 'org'
})Response
Status: 200 OK [
{
"login": "octocat",
"id": 1,
"node_id": "MDQ6VXNlcjE=",
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
"gravatar_id": "",
"url": "https://api.github.com/users/octocat",
"html_url": "https://github.com/octocat",
"followers_url": "https://api.github.com/users/octocat/followers",
"following_url": "https://api.github.com/users/octocat/following{/other_user}",
"gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
"starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
"organizations_url": "https://api.github.com/users/octocat/orgs",
"repos_url": "https://api.github.com/users/octocat/repos",
"events_url": "https://api.github.com/users/octocat/events{/privacy}",
"received_events_url": "https://api.github.com/users/octocat/received_events",
"type": "User",
"site_admin": false
}
]Notas
Check public organization membership for a user
get /orgs/{org}/public_members/{username}Parámetros
| Nombre | Tipo | In | Descripción |
|---|---|---|---|
accept | string | header | Setting to |
org | string | path | |
username | string | path |
Ejemplos de código
curl \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/orgs/ORG/public_members/USERNAME await octokit.request('GET /orgs/{org}/public_members/{username}', {
org: 'org',
username: 'username'
})Response if user is a public member
Status: 204 No ContentNotas
Error Codes
| HTTP Status Code | Descripción |
|---|---|
404 | Not Found if user is not a public member |
Set public organization membership for the authenticated user
The user can publicize their own membership. (A user cannot publicize the membership for another user.)
Note that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see "HTTP verbs."
put /orgs/{org}/public_members/{username}Parámetros
| Nombre | Tipo | In | Descripción |
|---|---|---|---|
accept | string | header | Setting to |
org | string | path | |
username | string | path |
Ejemplos de código
curl \
-X PUT \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/orgs/ORG/public_members/USERNAME await octokit.request('PUT /orgs/{org}/public_members/{username}', {
org: 'org',
username: 'username'
})Response
Status: 204 No ContentError Codes
| HTTP Status Code | Descripción |
|---|---|
403 | Forbidden |
Remove public organization membership for the authenticated user
delete /orgs/{org}/public_members/{username}Parámetros
| Nombre | Tipo | In | Descripción |
|---|---|---|---|
accept | string | header | Setting to |
org | string | path | |
username | string | path |
Ejemplos de código
curl \
-X DELETE \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/orgs/ORG/public_members/USERNAME await octokit.request('DELETE /orgs/{org}/public_members/{username}', {
org: 'org',
username: 'username'
})Response
Status: 204 No ContentList organization memberships for the authenticated user
get /user/memberships/orgsParámetros
| Nombre | Tipo | In | Descripción |
|---|---|---|---|
accept | string | header | Setting to |
state | string | query | Indicates the state of the memberships to return. Can be either |
per_page | integer | query | Results per page (max 100) Predeterminado: |
page | integer | query | Page number of the results to fetch. Predeterminado: |
Ejemplos de código
curl \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/user/memberships/orgs await octokit.request('GET /user/memberships/orgs')Response
Status: 200 OK [
{
"url": "https://api.github.com/orgs/octocat/memberships/defunkt",
"state": "active",
"role": "admin",
"organization_url": "https://api.github.com/orgs/octocat",
"organization": {
"login": "github",
"id": 1,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjE=",
"url": "https://api.github.com/orgs/github",
"repos_url": "https://api.github.com/orgs/github/repos",
"events_url": "https://api.github.com/orgs/github/events",
"hooks_url": "https://api.github.com/orgs/github/hooks",
"issues_url": "https://api.github.com/orgs/github/issues",
"members_url": "https://api.github.com/orgs/github/members{/member}",
"public_members_url": "https://api.github.com/orgs/github/public_members{/member}",
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
"description": "A great organization"
},
"user": {
"login": "octocat",
"id": 1,
"node_id": "MDQ6VXNlcjE=",
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
"gravatar_id": "",
"url": "https://api.github.com/users/octocat",
"html_url": "https://github.com/octocat",
"followers_url": "https://api.github.com/users/octocat/followers",
"following_url": "https://api.github.com/users/octocat/following{/other_user}",
"gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
"starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
"organizations_url": "https://api.github.com/users/octocat/orgs",
"repos_url": "https://api.github.com/users/octocat/repos",
"events_url": "https://api.github.com/users/octocat/events{/privacy}",
"received_events_url": "https://api.github.com/users/octocat/received_events",
"type": "User",
"site_admin": false
}
},
{
"url": "https://api.github.com/orgs/invitocat/memberships/defunkt",
"state": "pending",
"role": "admin",
"organization_url": "https://api.github.com/orgs/invitocat",
"organization": {
"login": "github",
"id": 1,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjE=",
"url": "https://api.github.com/orgs/github",
"repos_url": "https://api.github.com/orgs/github/repos",
"events_url": "https://api.github.com/orgs/github/events",
"hooks_url": "https://api.github.com/orgs/github/hooks",
"issues_url": "https://api.github.com/orgs/github/issues",
"members_url": "https://api.github.com/orgs/github/members{/member}",
"public_members_url": "https://api.github.com/orgs/github/public_members{/member}",
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
"description": "A great organization"
},
"user": {
"login": "octocat",
"id": 1,
"node_id": "MDQ6VXNlcjE=",
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
"gravatar_id": "",
"url": "https://api.github.com/users/octocat",
"html_url": "https://github.com/octocat",
"followers_url": "https://api.github.com/users/octocat/followers",
"following_url": "https://api.github.com/users/octocat/following{/other_user}",
"gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
"starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
"organizations_url": "https://api.github.com/users/octocat/orgs",
"repos_url": "https://api.github.com/users/octocat/repos",
"events_url": "https://api.github.com/users/octocat/events{/privacy}",
"received_events_url": "https://api.github.com/users/octocat/received_events",
"type": "User",
"site_admin": false
}
}
]Not modified
Status: 304 Not ModifiedError Codes
| HTTP Status Code | Descripción |
|---|---|
401 | Requires authentication |
403 | Forbidden |
422 | Validation failed |
Get an organization membership for the authenticated user
get /user/memberships/orgs/{org}Parámetros
| Nombre | Tipo | In | Descripción |
|---|---|---|---|
accept | string | header | Setting to |
org | string | path |
Ejemplos de código
curl \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/user/memberships/orgs/ORG await octokit.request('GET /user/memberships/orgs/{org}', {
org: 'org'
})Response
Status: 200 OK {
"url": "https://api.github.com/orgs/invitocat/memberships/defunkt",
"state": "pending",
"role": "admin",
"organization_url": "https://api.github.com/orgs/invitocat",
"organization": {
"login": "github",
"id": 1,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjE=",
"url": "https://api.github.com/orgs/github",
"repos_url": "https://api.github.com/orgs/github/repos",
"events_url": "https://api.github.com/orgs/github/events",
"hooks_url": "https://api.github.com/orgs/github/hooks",
"issues_url": "https://api.github.com/orgs/github/issues",
"members_url": "https://api.github.com/orgs/github/members{/member}",
"public_members_url": "https://api.github.com/orgs/github/public_members{/member}",
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
"description": "A great organization"
},
"user": {
"login": "octocat",
"id": 1,
"node_id": "MDQ6VXNlcjE=",
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
"gravatar_id": "",
"url": "https://api.github.com/users/octocat",
"html_url": "https://github.com/octocat",
"followers_url": "https://api.github.com/users/octocat/followers",
"following_url": "https://api.github.com/users/octocat/following{/other_user}",
"gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
"starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
"organizations_url": "https://api.github.com/users/octocat/orgs",
"repos_url": "https://api.github.com/users/octocat/repos",
"events_url": "https://api.github.com/users/octocat/events{/privacy}",
"received_events_url": "https://api.github.com/users/octocat/received_events",
"type": "User",
"site_admin": false
}
}Error Codes
| HTTP Status Code | Descripción |
|---|---|
403 | Forbidden |
404 | Resource not found |
Update an organization membership for the authenticated user
patch /user/memberships/orgs/{org}Parámetros
| Nombre | Tipo | In | Descripción |
|---|---|---|---|
accept | string | header | Setting to |
org | string | path | |
state | string | body | Required. The state that the membership should be in. Only |
Ejemplos de código
curl \
-X PATCH \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/user/memberships/orgs/ORG \
-d '{"state":"state"}' await octokit.request('PATCH /user/memberships/orgs/{org}', {
org: 'org',
state: 'state'
})Response
Status: 200 OK {
"url": "https://api.github.com/orgs/octocat/memberships/defunkt",
"state": "active",
"role": "admin",
"organization_url": "https://api.github.com/orgs/octocat",
"organization": {
"login": "github",
"id": 1,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjE=",
"url": "https://api.github.com/orgs/github",
"repos_url": "https://api.github.com/orgs/github/repos",
"events_url": "https://api.github.com/orgs/github/events",
"hooks_url": "https://api.github.com/orgs/github/hooks",
"issues_url": "https://api.github.com/orgs/github/issues",
"members_url": "https://api.github.com/orgs/github/members{/member}",
"public_members_url": "https://api.github.com/orgs/github/public_members{/member}",
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
"description": "A great organization"
},
"user": {
"login": "octocat",
"id": 1,
"node_id": "MDQ6VXNlcjE=",
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
"gravatar_id": "",
"url": "https://api.github.com/users/octocat",
"html_url": "https://github.com/octocat",
"followers_url": "https://api.github.com/users/octocat/followers",
"following_url": "https://api.github.com/users/octocat/following{/other_user}",
"gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
"starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
"organizations_url": "https://api.github.com/users/octocat/orgs",
"repos_url": "https://api.github.com/users/octocat/repos",
"events_url": "https://api.github.com/users/octocat/events{/privacy}",
"received_events_url": "https://api.github.com/users/octocat/received_events",
"type": "User",
"site_admin": false
}
}Error Codes
| HTTP Status Code | Descripción |
|---|---|
403 | Forbidden |
404 | Resource not found |
422 | Validation failed |
List outside collaborators for an organization
List all users who are outside collaborators of an organization.
get /orgs/{org}/outside_collaboratorsParámetros
| Nombre | Tipo | In | Descripción |
|---|---|---|---|
accept | string | header | Setting to |
org | string | path | |
filter | string | query | Filter the list of outside collaborators. Can be one of: Predeterminado: |
per_page | integer | query | Results per page (max 100) Predeterminado: |
page | integer | query | Page number of the results to fetch. Predeterminado: |
Ejemplos de código
curl \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/orgs/ORG/outside_collaborators await octokit.request('GET /orgs/{org}/outside_collaborators', {
org: 'org'
})Response
Status: 200 OK [
{
"login": "octocat",
"id": 1,
"node_id": "MDQ6VXNlcjE=",
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
"gravatar_id": "",
"url": "https://api.github.com/users/octocat",
"html_url": "https://github.com/octocat",
"followers_url": "https://api.github.com/users/octocat/followers",
"following_url": "https://api.github.com/users/octocat/following{/other_user}",
"gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
"starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
"organizations_url": "https://api.github.com/users/octocat/orgs",
"repos_url": "https://api.github.com/users/octocat/repos",
"events_url": "https://api.github.com/users/octocat/events{/privacy}",
"received_events_url": "https://api.github.com/users/octocat/received_events",
"type": "User",
"site_admin": false
}
]Notas
Convert an organization member to outside collaborator
When an organization member is converted to an outside collaborator, they'll only have access to the repositories that their current team membership allows. The user will no longer be a member of the organization. For more information, see "Converting an organization member to an outside collaborator".
put /orgs/{org}/outside_collaborators/{username}Parámetros
| Nombre | Tipo | In | Descripción |
|---|---|---|---|
accept | string | header | Setting to |
org | string | path | |
username | string | path |
Ejemplos de código
curl \
-X PUT \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/orgs/ORG/outside_collaborators/USERNAME await octokit.request('PUT /orgs/{org}/outside_collaborators/{username}', {
org: 'org',
username: 'username'
})User is getting converted asynchronously
Status: 202 AcceptedUser was converted
Status: 204 No ContentNotas
Error Codes
| HTTP Status Code | Descripción |
|---|---|
403 | Forbidden if user is the last owner of the organization or not a member of the organization |
404 | Resource not found |
Remove outside collaborator from an organization
Removing a user from this list will remove them from all the organization's repositories.
delete /orgs/{org}/outside_collaborators/{username}Parámetros
| Nombre | Tipo | In | Descripción |
|---|---|---|---|
accept | string | header | Setting to |
org | string | path | |
username | string | path |
Ejemplos de código
curl \
-X DELETE \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/orgs/ORG/outside_collaborators/USERNAME await octokit.request('DELETE /orgs/{org}/outside_collaborators/{username}', {
org: 'org',
username: 'username'
})Response
Status: 204 No ContentNotas
Error Codes
| HTTP Status Code | Descripción |
|---|---|
422 | Unprocessable Entity if user is a member of the organization |
Webhooks
Los webhooks de las organizaciones te permiten recibir cargas útiles de POST por HTTP cuando ciertos eventos suceden en una organización. Las API de REST de los webhooks te permiten administrar webhooks de repositorio, organización y aplicación. Puedes utilizar esta API para listar las entregas de webhook para uno de ellos u obtener y volver a hacer una entrega individual para uno de ellos, la cual puede integrarse en una app o servicio externo.. También puedes utilizar la API de REST para cambiar la configuración del webhook. Por ejemplo, puedes modificar la URL de la carga útil, el tipo de contenido, la verificación de SSL, y el secreto. Para obtener más información, consulta:
- API de REST para los webhooks de los repositorios
- API de REST de webhooks de organización
- GitHub App API de REST de Webhooks
Para obtener más información sobre las acciones a las cuales te puedes suscribir, consulta los "tipos de eventos de GitHub".
Alcances & Restricciones
Todas las acciones en contra de los webhooks de una organización requieren que el usuario autenticado sea un administrador de la organización que se está administrando. Adicionalmente, los tokens de OAuth requieren el alcance admin:org_hook. Par aobtener más información, consulta la sección "Alcances para las Apps de OAuth".
Para porteger los datos sensibles que pueden encontrarse en las configuraciones de los webhooks, también imponemos las siguientes reglas de control de accesos:
- Las aplicaciones de OAuth no pueden listar, ver o editar los webhooks que no crearon ellas mismas.
- Los usuarios no pueden listar, ver o editar los webhooks que crearon las aplicaciones de OAuth.
Recibir Webhooks
Para que GitHub envíe cargas útiles de webhooks, se necesita que se pueda acceder a tu servidor desde la internet. También sugerimos ampliamente utilizar SSL para que podamos enviar cargas útiles cifradas a través de HTTPS.
Para encontrar más de las mejores prácticas, consulta nuestra guía.
Encabezados de Webhook
GitHub enviará varios encabezados de HTTP para diferenciar los tipos de eventos y los identificadores de las cargas útiles. Consulta la sección de encabezados de webhook para encontrar más detalles.
List organization webhooks
get /orgs/{org}/hooksParámetros
| Nombre | Tipo | In | Descripción |
|---|---|---|---|
accept | string | header | Setting to |
org | string | path | |
per_page | integer | query | Results per page (max 100) Predeterminado: |
page | integer | query | Page number of the results to fetch. Predeterminado: |
Ejemplos de código
curl \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/orgs/ORG/hooks await octokit.request('GET /orgs/{org}/hooks', {
org: 'org'
})Response
Status: 200 OK [
{
"id": 1,
"url": "https://api.github.com/orgs/octocat/hooks/1",
"ping_url": "https://api.github.com/orgs/octocat/hooks/1/pings",
"deliveries_url": "https://api.github.com/orgs/octocat/hooks/1/deliveries",
"name": "web",
"events": [
"push",
"pull_request"
],
"active": true,
"config": {
"url": "http://example.com",
"content_type": "json"
},
"updated_at": "2011-09-06T20:39:23Z",
"created_at": "2011-09-06T17:26:27Z",
"type": "Organization"
}
]Notas
Error Codes
| HTTP Status Code | Descripción |
|---|---|
404 | Resource not found |
Create an organization webhook
Here's how you can create a hook that posts payloads in JSON format:
post /orgs/{org}/hooksParámetros
| Nombre | Tipo | In | Descripción | ||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
accept | string | header | Setting to | ||||||||||||||
org | string | path | |||||||||||||||
name | string | body | Required. Must be passed as "web". | ||||||||||||||
config | object | body | Required. Key/value pairs to provide settings for this webhook. These are defined below. | ||||||||||||||
Properties of the | |||||||||||||||||
| Nombre (Tipo) | Descripción |
|---|---|
url (string) | Required. The URL to which the payloads will be delivered. |
content_type (string) | The media type used to serialize the payloads. Supported values include |
secret (string) | If provided, the |
insecure_ssl (string or number or ) | Determines whether the SSL certificate of the host for |
username (string) | |
password (string) |
eventsDetermines what events the hook is triggered for.
Predeterminado: push
activeDetermines if notifications are sent when the webhook is triggered. Set to true to send notifications.
Predeterminado:
Ejemplos de código
curl \
-X POST \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/orgs/ORG/hooks \
-d '{"name":"name","config":{"url":"url","content_type":"content_type","secret":"secret","insecure_ssl":"insecure_ssl","username":"username","password":"password"}}' await octokit.request('POST /orgs/{org}/hooks', {
org: 'org',
name: 'name',
config: {
url: 'url',
content_type: 'content_type',
secret: 'secret',
insecure_ssl: 'insecure_ssl',
username: 'username',
password: 'password'
}
})Response
Status: 201 Created {
"id": 1,
"url": "https://api.github.com/orgs/octocat/hooks/1",
"ping_url": "https://api.github.com/orgs/octocat/hooks/1/pings",
"deliveries_url": "https://api.github.com/orgs/octocat/hooks/1/deliveries",
"name": "web",
"events": [
"push",
"pull_request"
],
"active": true,
"config": {
"url": "http://example.com",
"content_type": "json"
},
"updated_at": "2011-09-06T20:39:23Z",
"created_at": "2011-09-06T17:26:27Z",
"type": "Organization"
}Notas
Error Codes
| HTTP Status Code | Descripción |
|---|---|
404 | Resource not found |
422 | Validation failed |
Get an organization webhook
Returns a webhook configured in an organization. To get only the webhook config properties, see "Get a webhook configuration for an organization."
get /orgs/{org}/hooks/{hook_id}Parámetros
| Nombre | Tipo | In | Descripción |
|---|---|---|---|
accept | string | header | Setting to |
org | string | path | |
hook_id | integer | path |
Ejemplos de código
curl \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/orgs/ORG/hooks/42 await octokit.request('GET /orgs/{org}/hooks/{hook_id}', {
org: 'org',
hook_id: 42
})Response
Status: 200 OK {
"id": 1,
"url": "https://api.github.com/orgs/octocat/hooks/1",
"ping_url": "https://api.github.com/orgs/octocat/hooks/1/pings",
"deliveries_url": "https://api.github.com/orgs/octocat/hooks/1/deliveries",
"name": "web",
"events": [
"push",
"pull_request"
],
"active": true,
"config": {
"url": "http://example.com",
"content_type": "json"
},
"updated_at": "2011-09-06T20:39:23Z",
"created_at": "2011-09-06T17:26:27Z",
"type": "Organization"
}Notas
Error Codes
| HTTP Status Code | Descripción |
|---|---|
404 | Resource not found |
Update an organization webhook
Updates a webhook configured in an organization. When you update a webhook, the secret will be overwritten. If you previously had a secret set, you must provide the same secret or set a new secret or the secret will be removed. If you are only updating individual webhook config properties, use "Update a webhook configuration for an organization."
patch /orgs/{org}/hooks/{hook_id}Parámetros
| Nombre | Tipo | In | Descripción | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
accept | string | header | Setting to | ||||||||||
org | string | path | |||||||||||
hook_id | integer | path | |||||||||||
config | object | body | Key/value pairs to provide settings for this webhook. These are defined below. | ||||||||||
Properties of the | |||||||||||||
| Nombre (Tipo) | Descripción |
|---|---|
url (string) | Required. The URL to which the payloads will be delivered. |
content_type (string) | The media type used to serialize the payloads. Supported values include |
secret (string) | If provided, the |
insecure_ssl (string or number or ) | Determines whether the SSL certificate of the host for |
eventsDetermines what events the hook is triggered for.
Predeterminado: push
activeDetermines if notifications are sent when the webhook is triggered. Set to true to send notifications.
Predeterminado:
nameEjemplos de código
curl \
-X PATCH \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/orgs/ORG/hooks/42 \
-d '{"config":{"url":"url","content_type":"content_type","secret":"secret","insecure_ssl":"insecure_ssl"}}' await octokit.request('PATCH /orgs/{org}/hooks/{hook_id}', {
org: 'org',
hook_id: 42,
config: {
url: 'url',
content_type: 'content_type',
secret: 'secret',
insecure_ssl: 'insecure_ssl'
}
})Response
Status: 200 OK {
"id": 1,
"url": "https://api.github.com/orgs/octocat/hooks/1",
"ping_url": "https://api.github.com/orgs/octocat/hooks/1/pings",
"deliveries_url": "https://api.github.com/repos/octocat/Hello-World/hooks/12345678/deliveries",
"name": "web",
"events": [
"pull_request"
],
"active": true,
"config": {
"url": "http://example.com",
"content_type": "json"
},
"updated_at": "2011-09-06T20:39:23Z",
"created_at": "2011-09-06T17:26:27Z",
"type": "Organization"
}Notas
Error Codes
| HTTP Status Code | Descripción |
|---|---|
404 | Resource not found |
422 | Validation failed |
Delete an organization webhook
delete /orgs/{org}/hooks/{hook_id}Parámetros
| Nombre | Tipo | In | Descripción |
|---|---|---|---|
accept | string | header | Setting to |
org | string | path | |
hook_id | integer | path |
Ejemplos de código
curl \
-X DELETE \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/orgs/ORG/hooks/42 await octokit.request('DELETE /orgs/{org}/hooks/{hook_id}', {
org: 'org',
hook_id: 42
})Response
Status: 204 No ContentNotas
Error Codes
| HTTP Status Code | Descripción |
|---|---|
404 | Resource not found |
Get a webhook configuration for an organization
Returns the webhook configuration for an organization. To get more information about the webhook, including the active state and events, use "Get an organization webhook ."
Access tokens must have the admin:org_hook scope, and GitHub Apps must have the organization_hooks:read permission.
get /orgs/{org}/hooks/{hook_id}/configParámetros
| Nombre | Tipo | In | Descripción |
|---|---|---|---|
accept | string | header | Setting to |
org | string | path | |
hook_id | integer | path |
Ejemplos de código
curl \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/orgs/ORG/hooks/42/config await octokit.request('GET /orgs/{org}/hooks/{hook_id}/config', {
org: 'org',
hook_id: 42
})Response
Status: 200 OK {
"content_type": "json",
"insecure_ssl": "0",
"secret": "********",
"url": "https://example.com/webhook"
}Notas
Update a webhook configuration for an organization
Updates the webhook configuration for an organization. To update more information about the webhook, including the active state and events, use "Update an organization webhook ."
Access tokens must have the admin:org_hook scope, and GitHub Apps must have the organization_hooks:write permission.
patch /orgs/{org}/hooks/{hook_id}/configParámetros
| Nombre | Tipo | In | Descripción |
|---|---|---|---|
accept | string | header | Setting to |
org | string | path | |
hook_id | integer | path | |
url | string | body | The URL to which the payloads will be delivered. |
content_type | string | body | The media type used to serialize the payloads. Supported values include |
secret | string | body | If provided, the |
insecure_ssl | string or number or | body | Determines whether the SSL certificate of the host for |
Ejemplos de código
curl \
-X PATCH \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/orgs/ORG/hooks/42/config \
-d '{"url":"url"}' await octokit.request('PATCH /orgs/{org}/hooks/{hook_id}/config', {
org: 'org',
hook_id: 42,
url: 'url'
})Response
Status: 200 OK {
"content_type": "json",
"insecure_ssl": "0",
"secret": "********",
"url": "https://example.com/webhook"
}Notas
List deliveries for an organization webhook
Returns a list of webhook deliveries for a webhook configured in an organization.
get /orgs/{org}/hooks/{hook_id}/deliveriesParámetros
| Nombre | Tipo | In | Descripción |
|---|---|---|---|
accept | string | header | Setting to |
org | string | path | |
hook_id | integer | path | |
per_page | integer | query | Results per page (max 100) Predeterminado: |
cursor | string | query | Used for pagination: the starting delivery from which the page of deliveries is fetched. Refer to the |
Ejemplos de código
curl \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/orgs/ORG/hooks/42/deliveries await octokit.request('GET /orgs/{org}/hooks/{hook_id}/deliveries', {
org: 'org',
hook_id: 42
})Response
Status: 200 OK [
{
"id": 12345678,
"guid": "0b989ba4-242f-11e5-81e1-c7b6966d2516",
"delivered_at": "2019-06-03T00:57:16Z",
"redelivery": false,
"duration": 0.27,
"status": "OK",
"status_code": 200,
"event": "issues",
"action": "opened",
"installation_id": 123,
"repository_id": 456
},
{
"id": 123456789,
"guid": "0b989ba4-242f-11e5-81e1-c7b6966d2516",
"delivered_at": "2019-06-04T00:57:16Z",
"redelivery": true,
"duration": 0.28,
"status": "OK",
"status_code": 200,
"event": "issues",
"action": "opened",
"installation_id": 123,
"repository_id": 456
}
]Notas
Error Codes
| HTTP Status Code | Descripción |
|---|---|
400 | Bad Request |
422 | Validation failed |
Get a webhook delivery for an organization webhook
Returns a delivery for a webhook configured in an organization.
get /orgs/{org}/hooks/{hook_id}/deliveries/{delivery_id}Parámetros
| Nombre | Tipo | In | Descripción |
|---|---|---|---|
accept | string | header | Setting to |
org | string | path | |
hook_id | integer | path | |
delivery_id | integer | path |
Ejemplos de código
curl \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/orgs/ORG/hooks/42/deliveries/42 await octokit.request('GET /orgs/{org}/hooks/{hook_id}/deliveries/{delivery_id}', {
org: 'org',
hook_id: 42,
delivery_id: 42
})Response
Status: 200 OK {
"id": 12345678,
"guid": "0b989ba4-242f-11e5-81e1-c7b6966d2516",
"delivered_at": "2019-06-03T00:57:16Z",
"redelivery": false,
"duration": 0.27,
"status": "OK",
"status_code": 200,
"event": "issues",
"action": "opened",
"installation_id": 123,
"repository_id": 456,
"url": "https://www.example.com",
"request": {
"headers": {
"X-GitHub-Delivery": "0b989ba4-242f-11e5-81e1-c7b6966d2516",
"X-Hub-Signature-256": "sha256=6dcb09b5b57875f334f61aebed695e2e4193db5e",
"Accept": "*/*",
"X-GitHub-Hook-ID": "42",
"User-Agent": "GitHub-Hookshot/b8c71d8",
"X-GitHub-Event": "issues",
"X-GitHub-Hook-Installation-Target-ID": "123",
"X-GitHub-Hook-Installation-Target-Type": "repository",
"content-type": "application/json",
"X-Hub-Signature": "sha1=a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d"
},
"payload": {
"action": "opened",
"issue": {
"body": "foo"
},
"repository": {
"id": 123
}
}
},
"response": {
"headers": {
"Content-Type": "text/html;charset=utf-8"
},
"payload": "ok"
}
}Notas
Error Codes
| HTTP Status Code | Descripción |
|---|---|
400 | Bad Request |
422 | Validation failed |
Redeliver a delivery for an organization webhook
Redeliver a delivery for a webhook configured in an organization.
post /orgs/{org}/hooks/{hook_id}/deliveries/{delivery_id}/attemptsParámetros
| Nombre | Tipo | In | Descripción |
|---|---|---|---|
accept | string | header | Setting to |
org | string | path | |
hook_id | integer | path | |
delivery_id | integer | path |
Ejemplos de código
curl \
-X POST \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/orgs/ORG/hooks/42/deliveries/42/attempts await octokit.request('POST /orgs/{org}/hooks/{hook_id}/deliveries/{delivery_id}/attempts', {
org: 'org',
hook_id: 42,
delivery_id: 42
})Accepted
Status: 202 AcceptedNotas
Error Codes
| HTTP Status Code | Descripción |
|---|---|
400 | Bad Request |
422 | Validation failed |
Ping an organization webhook
This will trigger a ping event to be sent to the hook.
post /orgs/{org}/hooks/{hook_id}/pingsParámetros
| Nombre | Tipo | In | Descripción |
|---|---|---|---|
accept | string | header | Setting to |
org | string | path | |
hook_id | integer | path |
Ejemplos de código
curl \
-X POST \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/orgs/ORG/hooks/42/pings await octokit.request('POST /orgs/{org}/hooks/{hook_id}/pings', {
org: 'org',
hook_id: 42
})Response
Status: 204 No ContentNotas
Error Codes
| HTTP Status Code | Descripción |
|---|---|
404 | Resource not found |