Toolcape · GitHub

Toolcape + GitHub

O Toolcape conecta a IA existente da empresa aos seus sistemas por um único ponto de entrada MCP, com conexões de contas, permissões de grupos e pessoas e registros de auditoria. Esta documentação descreve um protótipo; não comprova a conexão de um servidor ou conta real.

A conexão

GitHub: Um espaço para código de software, tarefas e alterações de código.
Conexão por API · a IA usa o Toolcape via MCP
Login no provedor (OAuth). Confirme se a conexão configurada age em nome do usuário ou usa permissões de aplicativo.

Ações típicas

- Ler: Consultar repositórios, issues e pull requests
- Criar: Criar issues ou comentários
- Alterar: Atualizar issues e configurações de repositório compatíveis
Útil para equipes de desenvolvimento. A gestão de tarefas e a administração do repositório devem ter permissões separadas.

Configuração

1. A equipe de TI configura o aplicativo no provedor, a API e os escopos solicitados.
2. Login no provedor (OAuth). Confirme se a conexão configurada age em nome do usuário ou usa permissões de aplicativo.
3. Disponibilize o serviço no Toolcape. Defina regras para Todos, grupos e pessoas conforme as ações necessárias. Adicionar um serviço não concede acesso.
4. Conecte o aplicativo de IA aprovado ao endereço MCP real do Toolcape e faça login. Comece com uma consulta sem risco e confira o registro de auditoria.

Permissões

No acesso pessoal delegado, a conta do provedor, os escopos aprovados e as regras do Toolcape precisam permitir a ação. Contas compartilhadas e permissões de aplicativo podem ter outros limites. O Toolcape combina permissões de Todos e dos grupos; uma exceção pessoal substitui o acesso herdado naquele serviço. A leitura pode expor informações confidenciais. Compartilhamento, envio e exclusão exigem avaliação separada.

Executar uma operação

Primeiro, descubra quais ferramentas o servidor Toolcape conectado realmente oferece. Se houver pesquisar → descrever → executar, encontre a operação, confira o esquema de entrada e as permissões e execute com dados validados. Os nomes variam por servidor; não invente nomes, argumentos, URLs ou resultados bem-sucedidos. Sem ferramentas conectadas, oriente a configuração em vez de afirmar que executou ações.

Referência de operações

Catálogo de 16 de setembro de 2026. Verifique o esquema atual antes de executar.
- meta.root — GitHub API Root
GET /
https://docs.github.com/rest/meta/meta#github-api-root
- securityAdvisories.listGlobalAdvisories — Listar avisos de segurança
GET /advisories
https://docs.github.com/rest/security-advisories/global-advisories#list-global-security-advisories
- securityAdvisories.getGlobalAdvisory — Consultar aviso de segurança
GET /advisories/{ghsa_id}
https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory
- agentTasks.listTasksForRepo — Listar repositórios de código
GET /agents/repos/{owner}/{repo}/tasks
https://docs.github.com/rest/agent-tasks/agent-tasks#list-tasks-for-repository
- agentTasks.createTaskInRepo — Iniciar tarefa
POST /agents/repos/{owner}/{repo}/tasks
https://docs.github.com/rest/agent-tasks/agent-tasks#start-a-task
- agentTasks.getTaskByRepoAndId — Consultar tarefa
GET /agents/repos/{owner}/{repo}/tasks/{task_id}
https://docs.github.com/rest/agent-tasks/agent-tasks#get-a-task-by-repo
- agentTasks.listTasks — Listar tarefas
GET /agents/tasks
https://docs.github.com/rest/agent-tasks/agent-tasks#list-tasks
- agentTasks.getTaskById — Consultar tarefa
GET /agents/tasks/{task_id}
https://docs.github.com/rest/agent-tasks/agent-tasks#get-a-task-by-id
- apps.getAuthenticated — Get the authenticated app
GET /app
https://docs.github.com/rest/apps/apps#get-the-authenticated-app
- apps.createFromManifest — Create a GitHub App from a manifest
POST /app-manifests/{code}/conversions
https://docs.github.com/rest/apps/apps#create-a-github-app-from-a-manifest
- apps.getWebhookConfigForApp — Consultar webhook
GET /app/hook/config
https://docs.github.com/rest/apps/webhooks#get-a-webhook-configuration-for-an-app
- apps.updateWebhookConfigForApp — Atualizar webhook
PATCH /app/hook/config
https://docs.github.com/rest/apps/webhooks#update-a-webhook-configuration-for-an-app
- apps.listWebhookDeliveries — Listar webhooks
GET /app/hook/deliveries
https://docs.github.com/rest/apps/webhooks#list-deliveries-for-an-app-webhook
- apps.getWebhookDelivery — Consultar webhook
GET /app/hook/deliveries/{delivery_id}
https://docs.github.com/rest/apps/webhooks#get-a-delivery-for-an-app-webhook
- apps.redeliverWebhookDelivery — Redeliver a delivery for an app webhook
POST /app/hook/deliveries/{delivery_id}/attempts
https://docs.github.com/rest/apps/webhooks#redeliver-a-delivery-for-an-app-webhook
- apps.listInstallationRequestsForAuthenticatedApp — List installation requests for the authenticated app
GET /app/installation-requests
https://docs.github.com/rest/apps/apps#list-installation-requests-for-the-authenticated-app
- apps.listInstallations — List installations for the authenticated app
GET /app/installations
https://docs.github.com/rest/apps/apps#list-installations-for-the-authenticated-app
- apps.getInstallation — Get an installation for the authenticated app
GET /app/installations/{installation_id}
https://docs.github.com/rest/apps/apps#get-an-installation-for-the-authenticated-app
- apps.deleteInstallation — Delete an installation for the authenticated app
DELETE /app/installations/{installation_id}
https://docs.github.com/rest/apps/apps#delete-an-installation-for-the-authenticated-app
- apps.createInstallationAccessToken — Criar token de acesso
POST /app/installations/{installation_id}/access_tokens
https://docs.github.com/rest/apps/apps#create-an-installation-access-token-for-an-app
- apps.suspendInstallation — Suspend an app installation
PUT /app/installations/{installation_id}/suspended
https://docs.github.com/rest/apps/apps#suspend-an-app-installation
- apps.unsuspendInstallation — Unsuspend an app installation
DELETE /app/installations/{installation_id}/suspended
https://docs.github.com/rest/apps/apps#unsuspend-an-app-installation
- apps.deleteAuthorization — Delete an app authorization
DELETE /applications/{client_id}/grant
https://docs.github.com/rest/apps/oauth-applications#delete-an-app-authorization
- apps.checkToken — Verificar token de acesso
POST /applications/{client_id}/token
https://docs.github.com/rest/apps/oauth-applications#check-a-token
- apps.deleteToken — Excluir token de acesso
DELETE /applications/{client_id}/token
https://docs.github.com/rest/apps/oauth-applications#delete-an-app-token
- apps.resetToken — Redefinir token de acesso
PATCH /applications/{client_id}/token
https://docs.github.com/rest/apps/oauth-applications#reset-a-token
- apps.scopeToken — Criar token de acesso
POST /applications/{client_id}/token/scoped
https://docs.github.com/rest/apps/apps#create-a-scoped-access-token
- apps.getBySlug — Get an app
GET /apps/{app_slug}
https://docs.github.com/rest/apps/apps#get-an-app
- classroom.getAnAssignment — Get an assignment
GET /assignments/{assignment_id}
https://docs.github.com/rest/classroom/classroom#closed---get-an-assignment
- classroom.listAcceptedAssignmentsForAnAssignment — List accepted assignments for an assignment
GET /assignments/{assignment_id}/accepted_assignments
https://docs.github.com/rest/classroom/classroom#closed---list-accepted-assignments-for-an-assignment
- classroom.getAssignmentGrades — Get assignment grades
GET /assignments/{assignment_id}/grades
https://docs.github.com/rest/classroom/classroom#closed---get-assignment-grades
- classroom.listClassrooms — List classrooms
GET /classrooms
https://docs.github.com/rest/classroom/classroom#closed---list-classrooms
- classroom.getAClassroom — Get a classroom
GET /classrooms/{classroom_id}
https://docs.github.com/rest/classroom/classroom#closed---get-a-classroom
- classroom.listAssignmentsForAClassroom — List assignments for a classroom
GET /classrooms/{classroom_id}/assignments
https://docs.github.com/rest/classroom/classroom#closed---list-assignments-for-a-classroom
- codesOfConduct.getAllCodesOfConduct — Get all codes of conduct
GET /codes_of_conduct
https://docs.github.com/rest/codes-of-conduct/codes-of-conduct#get-all-codes-of-conduct
- codesOfConduct.getConductCode — Get a code of conduct
GET /codes_of_conduct/{key}
https://docs.github.com/rest/codes-of-conduct/codes-of-conduct#get-a-code-of-conduct
- credentials.revoke — Revogar credencial
POST /credentials/revoke
https://docs.github.com/rest/credentials/revoke#revoke-a-list-of-credentials
- emojis.get — Get emojis
GET /emojis
https://docs.github.com/rest/emojis/emojis#get-emojis
- actions.getActionsCacheRetentionLimitForEnterprise — Consultar prazo de retenção da empresa
GET /enterprises/{enterprise}/actions/cache/retention-limit
https://docs.github.com/rest/actions/cache#get-github-actions-cache-retention-limit-for-an-enterprise
- actions.setActionsCacheRetentionLimitForEnterprise — Definir prazo de retenção da empresa
PUT /enterprises/{enterprise}/actions/cache/retention-limit
https://docs.github.com/rest/actions/cache#set-github-actions-cache-retention-limit-for-an-enterprise
- actions.getActionsCacheStorageLimitForEnterprise — Consultar dado em cache da empresa
GET /enterprises/{enterprise}/actions/cache/storage-limit
https://docs.github.com/rest/actions/cache#get-github-actions-cache-storage-limit-for-an-enterprise
- actions.setActionsCacheStorageLimitForEnterprise — Definir dado em cache da empresa
PUT /enterprises/{enterprise}/actions/cache/storage-limit
https://docs.github.com/rest/actions/cache#set-github-actions-cache-storage-limit-for-an-enterprise
- oidc.listOidcCustomPropertyInclusionsForEnterprise — List OIDC custom property inclusions for an enterprise
GET /enterprises/{enterprise}/actions/oidc/customization/properties/repo
https://docs.github.com/rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-enterprise
- oidc.createOidcCustomPropertyInclusionForEnterprise — Create an OIDC custom property inclusion for an enterprise
POST /enterprises/{enterprise}/actions/oidc/customization/properties/repo
https://docs.github.com/rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-enterprise
- oidc.deleteOidcCustomPropertyInclusionForEnterprise — Delete an OIDC custom property inclusion for an enterprise
DELETE /enterprises/{enterprise}/actions/oidc/customization/properties/repo/{custom_property_name}
https://docs.github.com/rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-enterprise
- codeSecurity.getConfigurationsForEnterprise — Consultar configuração da empresa
GET /enterprises/{enterprise}/code-security/configurations
https://docs.github.com/rest/code-security/configurations#get-code-security-configurations-for-an-enterprise
- codeSecurity.createConfigurationForEnterprise — Criar configuração da empresa
POST /enterprises/{enterprise}/code-security/configurations
https://docs.github.com/rest/code-security/configurations#create-a-code-security-configuration-for-an-enterprise
- codeSecurity.getDefaultConfigurationsForEnterprise — Consultar configuração da empresa
GET /enterprises/{enterprise}/code-security/configurations/defaults
https://docs.github.com/rest/code-security/configurations#get-default-code-security-configurations-for-an-enterprise
- codeSecurity.getSingleConfigurationForEnterprise — Consultar configuração da empresa
GET /enterprises/{enterprise}/code-security/configurations/{configuration_id}
https://docs.github.com/rest/code-security/configurations#retrieve-a-code-security-configuration-of-an-enterprise
- codeSecurity.deleteConfigurationForEnterprise — Excluir configuração da empresa
DELETE /enterprises/{enterprise}/code-security/configurations/{configuration_id}
https://docs.github.com/rest/code-security/configurations#delete-a-code-security-configuration-for-an-enterprise
- codeSecurity.updateEnterpriseConfiguration — Atualizar configuração da empresa
PATCH /enterprises/{enterprise}/code-security/configurations/{configuration_id}
https://docs.github.com/rest/code-security/configurations#update-a-custom-code-security-configuration-for-an-enterprise
- codeSecurity.attachEnterpriseConfiguration — Attach an enterprise configuration to repositories
POST /enterprises/{enterprise}/code-security/configurations/{configuration_id}/attach
https://docs.github.com/rest/code-security/configurations#attach-an-enterprise-configuration-to-repositories
- codeSecurity.setConfigurationAsDefaultForEnterprise — Definir configuração da empresa
PUT /enterprises/{enterprise}/code-security/configurations/{configuration_id}/defaults
https://docs.github.com/rest/code-security/configurations#set-a-code-security-configuration-as-a-default-for-an-enterprise
- codeSecurity.getRepositoriesForEnterpriseConfiguration — Consultar repositório de código da empresa
GET /enterprises/{enterprise}/code-security/configurations/{configuration_id}/repositories
https://docs.github.com/rest/code-security/configurations#get-repositories-associated-with-an-enterprise-code-security-configuration
- copilot.copilotEnterpriseOneDayUsageMetrics — Consultar estatística da empresa
GET /enterprises/{enterprise}/copilot/metrics/reports/enterprise-1-day
https://docs.github.com/rest/copilot/copilot-usage-metrics#get-copilot-enterprise-usage-metrics-for-a-specific-day
- copilot.copilotEnterpriseUsageMetrics — Consultar estatística da empresa
GET /enterprises/{enterprise}/copilot/metrics/reports/enterprise-28-day/latest
https://docs.github.com/rest/copilot/copilot-usage-metrics#get-copilot-enterprise-usage-metrics
- copilot.copilotEnterpriseUserTeamsOneDayReport — Consultar equipe da empresa
GET /enterprises/{enterprise}/copilot/metrics/reports/user-teams-1-day
https://docs.github.com/rest/copilot/copilot-usage-metrics#get-copilot-enterprise-user-teams-report-for-a-specific-day
- copilot.copilotUsersOneDayUsageMetrics — Consultar usuário
GET /enterprises/{enterprise}/copilot/metrics/reports/users-1-day
https://docs.github.com/rest/copilot/copilot-usage-metrics#get-copilot-users-usage-metrics-for-a-specific-day
- copilot.copilotUsersUsageMetrics — Consultar usuário
GET /enterprises/{enterprise}/copilot/metrics/reports/users-28-day/latest
https://docs.github.com/rest/copilot/copilot-usage-metrics#get-copilot-users-usage-metrics
- copilot.setEnterpriseCodingAgentPolicy — Set the coding agent policy for an enterprise
PUT /enterprises/{enterprise}/copilot/policies/coding_agent
https://docs.github.com/rest/copilot/copilot-coding-agent-management#set-the-coding-agent-policy-for-an-enterprise
- copilot.addOrganizationsToEnterpriseCodingAgentPolicy — Adicionar organização da empresa
POST /enterprises/{enterprise}/copilot/policies/coding_agent/organizations
https://docs.github.com/rest/copilot/copilot-coding-agent-management#add-organizations-to-the-enterprise-coding-agent-policy
- copilot.removeOrganizationsFromEnterpriseCodingAgentPolicy — Remover organização da empresa
DELETE /enterprises/{enterprise}/copilot/policies/coding_agent/organizations
https://docs.github.com/rest/copilot/copilot-coding-agent-management#remove-organizations-from-the-enterprise-coding-agent-policy
- dependabot.listAlertsForEnterprise — Listar alertas da empresa
GET /enterprises/{enterprise}/dependabot/alerts
https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise
- dependabot.repositoryAccessForEnterprise — Lists the repositories Dependabot can access in an enterprise
GET /enterprises/{enterprise}/dependabot/repository-access
https://docs.github.com/rest/dependabot/repository-access#lists-the-repositories-dependabot-can-access-in-an-enterprise
- dependabot.updateRepositoryAccessForEnterprise — Updates Dependabot's repository access list for an enterprise
PATCH /enterprises/{enterprise}/dependabot/repository-access
https://docs.github.com/rest/dependabot/repository-access#updates-dependabots-repository-access-list-for-an-enterprise
- dependabot.setRepositoryAccessDefaultLevelForEnterprise — Definir regra de acesso da empresa
PUT /enterprises/{enterprise}/dependabot/repository-access/default-level
https://docs.github.com/rest/dependabot/repository-access#set-the-default-repository-access-level-for-dependabot-in-an-enterprise
- enterpriseTeams.list — Listar equipes da empresa
GET /enterprises/{enterprise}/teams
https://docs.github.com/rest/enterprise-teams/enterprise-teams#list-enterprise-teams
- enterpriseTeams.create — Criar equipe da empresa
POST /enterprises/{enterprise}/teams
https://docs.github.com/rest/enterprise-teams/enterprise-teams#create-an-enterprise-team
- enterpriseTeamMemberships.list — Listar equipes da empresa
GET /enterprises/{enterprise}/teams/{enterprise-team}/memberships
https://docs.github.com/rest/enterprise-teams/enterprise-team-members#list-members-in-an-enterprise-team
- enterpriseTeamMemberships.bulkAdd — Bulk add team members
POST /enterprises/{enterprise}/teams/{enterprise-team}/memberships/add
https://docs.github.com/rest/enterprise-teams/enterprise-team-members#bulk-add-team-members
- enterpriseTeamMemberships.bulkRemove — Bulk remove team members
POST /enterprises/{enterprise}/teams/{enterprise-team}/memberships/remove
https://docs.github.com/rest/enterprise-teams/enterprise-team-members#bulk-remove-team-members
- enterpriseTeamMemberships.get — Consultar vínculo de membro da empresa
GET /enterprises/{enterprise}/teams/{enterprise-team}/memberships/{username}
https://docs.github.com/rest/enterprise-teams/enterprise-team-members#get-enterprise-team-membership
- enterpriseTeamMemberships.add — Adicionar equipe
PUT /enterprises/{enterprise}/teams/{enterprise-team}/memberships/{username}
https://docs.github.com/rest/enterprise-teams/enterprise-team-members#add-team-member
- enterpriseTeamMemberships.remove — Remover vínculo de membro
DELETE /enterprises/{enterprise}/teams/{enterprise-team}/memberships/{username}
https://docs.github.com/rest/enterprise-teams/enterprise-team-members#remove-team-membership
- enterpriseTeamOrganizations.getAssignments — Consultar organização
GET /enterprises/{enterprise}/teams/{enterprise-team}/organizations
https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#get-organization-assignments
- enterpriseTeamOrganizations.bulkAdd — Adicionar organização
POST /enterprises/{enterprise}/teams/{enterprise-team}/organizations/add
https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#add-organization-assignments
- enterpriseTeamOrganizations.bulkRemove — Remover organização
POST /enterprises/{enterprise}/teams/{enterprise-team}/organizations/remove
https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#remove-organization-assignments
- enterpriseTeamOrganizations.getAssignment — Consultar organização
GET /enterprises/{enterprise}/teams/{enterprise-team}/organizations/{org}
https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#get-organization-assignment
- enterpriseTeamOrganizations.add — Adicionar organização
PUT /enterprises/{enterprise}/teams/{enterprise-team}/organizations/{org}
https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#add-an-organization-assignment
- enterpriseTeamOrganizations.delete — Excluir organização
DELETE /enterprises/{enterprise}/teams/{enterprise-team}/organizations/{org}
https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#delete-an-organization-assignment
- enterpriseTeams.get — Consultar equipe da empresa
GET /enterprises/{enterprise}/teams/{team_slug}
https://docs.github.com/rest/enterprise-teams/enterprise-teams#get-an-enterprise-team
- enterpriseTeams.delete — Excluir equipe da empresa
DELETE /enterprises/{enterprise}/teams/{team_slug}
https://docs.github.com/rest/enterprise-teams/enterprise-teams#delete-an-enterprise-team
- enterpriseTeams.update — Atualizar equipe da empresa
PATCH /enterprises/{enterprise}/teams/{team_slug}
https://docs.github.com/rest/enterprise-teams/enterprise-teams#update-an-enterprise-team
- activity.listPublicEvents — Listar eventos
GET /events
https://docs.github.com/rest/activity/events#list-public-events
- activity.getFeeds — Get feeds
GET /feeds
https://docs.github.com/rest/activity/feeds#get-feeds
- gists.list — Listar usuários
GET /gists
https://docs.github.com/rest/gists/gists#list-gists-for-the-authenticated-user
- gists.create — Create a gist
POST /gists
https://docs.github.com/rest/gists/gists#create-a-gist
- gists.listPublic — List public gists
GET /gists/public
https://docs.github.com/rest/gists/gists#list-public-gists
- gists.listStarred — List starred gists
GET /gists/starred
https://docs.github.com/rest/gists/gists#list-starred-gists
- gists.get — Get a gist
GET /gists/{gist_id}
https://docs.github.com/rest/gists/gists#get-a-gist
- gists.delete — Delete a gist
DELETE /gists/{gist_id}
https://docs.github.com/rest/gists/gists#delete-a-gist
- gists.update — Update a gist
PATCH /gists/{gist_id}
https://docs.github.com/rest/gists/gists#update-a-gist
- gists.listComments — Listar comentários
GET /gists/{gist_id}/comments
https://docs.github.com/rest/gists/comments#list-gist-comments
- gists.createComment — Criar comentário
POST /gists/{gist_id}/comments
https://docs.github.com/rest/gists/comments#create-a-gist-comment
- gists.getComment — Consultar comentário
GET /gists/{gist_id}/comments/{comment_id}
https://docs.github.com/rest/gists/comments#get-a-gist-comment
- gists.deleteComment — Excluir comentário
DELETE /gists/{gist_id}/comments/{comment_id}
https://docs.github.com/rest/gists/comments#delete-a-gist-comment
- gists.updateComment — Atualizar comentário
PATCH /gists/{gist_id}/comments/{comment_id}
https://docs.github.com/rest/gists/comments#update-a-gist-comment
- gists.listCommits — Listar alterações de código (commits)
GET /gists/{gist_id}/commits
https://docs.github.com/rest/gists/gists#list-gist-commits
- gists.listForks — List gist forks
GET /gists/{gist_id}/forks
https://docs.github.com/rest/gists/gists#list-gist-forks
- gists.fork — Fork a gist
POST /gists/{gist_id}/forks
https://docs.github.com/rest/gists/gists#fork-a-gist
- gists.checkIsStarred — Check if a gist is starred
GET /gists/{gist_id}/star
https://docs.github.com/rest/gists/gists#check-if-a-gist-is-starred
- gists.star — Star a gist
PUT /gists/{gist_id}/star
https://docs.github.com/rest/gists/gists#star-a-gist
- gists.unstar — Unstar a gist
DELETE /gists/{gist_id}/star
https://docs.github.com/rest/gists/gists#unstar-a-gist
- gists.getRevision — Get a gist revision
GET /gists/{gist_id}/{sha}
https://docs.github.com/rest/gists/gists#get-a-gist-revision
- gitignore.getAllTemplates — Get all gitignore templates
GET /gitignore/templates
https://docs.github.com/rest/gitignore/gitignore#get-all-gitignore-templates
- gitignore.getTemplate — Get a gitignore template
GET /gitignore/templates/{name}
https://docs.github.com/rest/gitignore/gitignore#get-a-gitignore-template
- apps.listReposAccessibleToInstallation — Listar regras de acesso
GET /installation/repositories
https://docs.github.com/rest/apps/installations#list-repositories-accessible-to-the-app-installation
- apps.revokeInstallationAccessToken — Revogar token de acesso
DELETE /installation/token
https://docs.github.com/rest/apps/installations#revoke-an-installation-access-token
- issues.list — Listar chamados do usuário conectado
GET /issues
https://docs.github.com/rest/issues/issues#list-issues-assigned-to-the-authenticated-user
- licenses.getAllCommonlyUsed — Get all commonly used licenses
GET /licenses
https://docs.github.com/rest/licenses/licenses#get-all-commonly-used-licenses
- licenses.get — Get a license
GET /licenses/{license}
https://docs.github.com/rest/licenses/licenses#get-a-license
- markdown.render — Render a Markdown document
POST /markdown
https://docs.github.com/rest/markdown/markdown#render-a-markdown-document
- markdown.renderRaw — Render a Markdown document in raw mode
POST /markdown/raw
https://docs.github.com/rest/markdown/markdown#render-a-markdown-document-in-raw-mode
- apps.getSubscriptionPlanForAccount — Consultar assinatura
GET /marketplace_listing/accounts/{account_id}
https://docs.github.com/rest/apps/marketplace#get-a-subscription-plan-for-an-account
- apps.listPlans — List plans
GET /marketplace_listing/plans
https://docs.github.com/rest/apps/marketplace#list-plans
- apps.listAccountsForPlan — List accounts for a plan
GET /marketplace_listing/plans/{plan_id}/accounts
https://docs.github.com/rest/apps/marketplace#list-accounts-for-a-plan
- apps.getSubscriptionPlanForAccountStubbed — Consultar assinatura
GET /marketplace_listing/stubbed/accounts/{account_id}
https://docs.github.com/rest/apps/marketplace#get-a-subscription-plan-for-an-account-stubbed
- apps.listPlansStubbed — List plans (stubbed)
GET /marketplace_listing/stubbed/plans
https://docs.github.com/rest/apps/marketplace#list-plans-stubbed
- apps.listAccountsForPlanStubbed — List accounts for a plan (stubbed)
GET /marketplace_listing/stubbed/plans/{plan_id}/accounts
https://docs.github.com/rest/apps/marketplace#list-accounts-for-a-plan-stubbed
- meta.get — Get GitHub meta information
GET /meta
https://docs.github.com/rest/meta/meta#get-apiname-meta-information
- activity.listPublicEventsForRepoNetwork — Listar eventos
GET /networks/{owner}/{repo}/events
https://docs.github.com/rest/activity/events#list-public-events-for-a-network-of-repositories
- activity.listNotificationsForAuthenticatedUser — Listar usuários
GET /notifications
https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user
- activity.markNotificationsAsRead — Mark notifications as read
PUT /notifications
https://docs.github.com/rest/activity/notifications#mark-notifications-as-read
- activity.getThread — Consultar conversa
GET /notifications/threads/{thread_id}
https://docs.github.com/rest/activity/notifications#get-a-thread
- activity.markThreadAsDone — Mark a thread as done
DELETE /notifications/threads/{thread_id}
https://docs.github.com/rest/activity/notifications#mark-a-thread-as-done
- activity.markThreadAsRead — Mark a thread as read
PATCH /notifications/threads/{thread_id}
https://docs.github.com/rest/activity/notifications#mark-a-thread-as-read
- activity.getThreadSubscriptionForAuthenticatedUser — Consultar conversa do usuário conectado
GET /notifications/threads/{thread_id}/subscription
https://docs.github.com/rest/activity/notifications#get-a-thread-subscription-for-the-authenticated-user
- activity.setThreadSubscription — Definir conversa
PUT /notifications/threads/{thread_id}/subscription
https://docs.github.com/rest/activity/notifications#set-a-thread-subscription
- activity.deleteThreadSubscription — Excluir conversa
DELETE /notifications/threads/{thread_id}/subscription
https://docs.github.com/rest/activity/notifications#delete-a-thread-subscription
- meta.getOctocat — Get Octocat
GET /octocat
https://docs.github.com/rest/meta/meta#get-octocat
- orgs.list — Listar organizações
GET /organizations
https://docs.github.com/rest/orgs/orgs#list-organizations
- actions.getActionsCacheRetentionLimitForOrganization — Consultar prazo de retenção da organização
GET /organizations/{org}/actions/cache/retention-limit
https://docs.github.com/rest/actions/cache#get-github-actions-cache-retention-limit-for-an-organization
- actions.setActionsCacheRetentionLimitForOrganization — Definir prazo de retenção da organização
PUT /organizations/{org}/actions/cache/retention-limit
https://docs.github.com/rest/actions/cache#set-github-actions-cache-retention-limit-for-an-organization
- actions.getActionsCacheStorageLimitForOrganization — Consultar dado em cache da organização
GET /organizations/{org}/actions/cache/storage-limit
https://docs.github.com/rest/actions/cache#get-github-actions-cache-storage-limit-for-an-organization
- actions.setActionsCacheStorageLimitForOrganization — Definir dado em cache da organização
PUT /organizations/{org}/actions/cache/storage-limit
https://docs.github.com/rest/actions/cache#set-github-actions-cache-storage-limit-for-an-organization
- billing.getGithubBillingAiCreditUsageReportOrg — Consultar informação de cobrança da organização
GET /organizations/{org}/settings/billing/ai_credit/usage
https://docs.github.com/rest/billing/usage#get-billing-ai-credit-usage-report-for-an-organization
- billing.getAllBudgetsOrg — Listar orçamentos da organização
GET /organizations/{org}/settings/billing/budgets
https://docs.github.com/rest/billing/budgets#get-all-budgets-for-an-organization
- billing.createOrganizationBudget — Criar orçamento da organização
POST /organizations/{org}/settings/billing/budgets
https://docs.github.com/rest/billing/budgets#create-a-budget-for-an-organization
- billing.getBudgetOrg — Consultar orçamento da organização
GET /organizations/{org}/settings/billing/budgets/{budget_id}
https://docs.github.com/rest/billing/budgets#get-a-budget-by-id-for-an-organization
- billing.deleteBudgetOrg — Excluir orçamento da organização
DELETE /organizations/{org}/settings/billing/budgets/{budget_id}
https://docs.github.com/rest/billing/budgets#delete-a-budget-for-an-organization
- billing.updateBudgetOrg — Atualizar orçamento da organização
PATCH /organizations/{org}/settings/billing/budgets/{budget_id}
https://docs.github.com/rest/billing/budgets#update-a-budget-for-an-organization
- billing.getGithubBillingPremiumRequestUsageReportOrg — Consultar informação de cobrança da organização
GET /organizations/{org}/settings/billing/premium_request/usage
https://docs.github.com/rest/billing/usage#get-billing-premium-request-usage-report-for-an-organization
- billing.getGithubBillingUsageReportOrg — Consultar informação de cobrança da organização
GET /organizations/{org}/settings/billing/usage
https://docs.github.com/rest/billing/usage#get-billing-usage-report-for-an-organization
- billing.getGithubBillingUsageSummaryReportOrg — Consultar informação de cobrança da organização
GET /organizations/{org}/settings/billing/usage/summary
https://docs.github.com/rest/billing/usage#get-billing-usage-summary-for-an-organization
- orgs.get — Consultar organização
GET /orgs/{org}
https://docs.github.com/rest/orgs/orgs#get-an-organization
- orgs.delete — Excluir organização
DELETE /orgs/{org}
https://docs.github.com/rest/orgs/orgs#delete-an-organization
- orgs.update — Atualizar organização
PATCH /orgs/{org}
https://docs.github.com/rest/orgs/orgs#update-an-organization
- actions.getActionsCacheUsageForOrg — Consultar dado em cache da organização
GET /orgs/{org}/actions/cache/usage
https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-an-organization
- actions.getActionsCacheUsageByRepoForOrg — Listar dados em cache da organização
GET /orgs/{org}/actions/cache/usage-by-repository
https://docs.github.com/rest/actions/cache#list-repositories-with-github-actions-cache-usage-for-an-organization
- actions.listHostedRunnersForOrg — Listar executores da organização
GET /orgs/{org}/actions/hosted-runners
https://docs.github.com/rest/actions/hosted-runners#list-github-hosted-runners-for-an-organization
- actions.createHostedRunnerForOrg — Criar executor da organização
POST /orgs/{org}/actions/hosted-runners
https://docs.github.com/rest/actions/hosted-runners#create-a-github-hosted-runner-for-an-organization
- actions.listCustomImagesForOrg — Listar organizações
GET /orgs/{org}/actions/hosted-runners/images/custom
https://docs.github.com/rest/actions/hosted-runners#list-custom-images-for-an-organization
- actions.getCustomImageForOrg — Consultar executor
GET /orgs/{org}/actions/hosted-runners/images/custom/{image_definition_id}
https://docs.github.com/rest/actions/hosted-runners#get-a-custom-image-definition-for-github-actions-hosted-runners
- actions.deleteCustomImageFromOrg — Excluir organização
DELETE /orgs/{org}/actions/hosted-runners/images/custom/{image_definition_id}
https://docs.github.com/rest/actions/hosted-runners#delete-a-custom-image-from-the-organization
- actions.listCustomImageVersionsForOrg — Listar organizações
GET /orgs/{org}/actions/hosted-runners/images/custom/{image_definition_id}/versions
https://docs.github.com/rest/actions/hosted-runners#list-image-versions-of-a-custom-image-for-an-organization
- actions.getCustomImageVersionForOrg — Consultar executor
GET /orgs/{org}/actions/hosted-runners/images/custom/{image_definition_id}/versions/{version}
https://docs.github.com/rest/actions/hosted-runners#get-an-image-version-of-a-custom-image-for-github-actions-hosted-runners
- actions.deleteCustomImageVersionFromOrg — Excluir organização
DELETE /orgs/{org}/actions/hosted-runners/images/custom/{image_definition_id}/versions/{version}
https://docs.github.com/rest/actions/hosted-runners#delete-an-image-version-of-custom-image-from-the-organization
- actions.getHostedRunnersGithubOwnedImagesForOrg — Consultar executor da organização
GET /orgs/{org}/actions/hosted-runners/images/github-owned
https://docs.github.com/rest/actions/hosted-runners#get-github-owned-images-for-github-hosted-runners-in-an-organization
- actions.getHostedRunnersPartnerImagesForOrg — Consultar executor da organização
GET /orgs/{org}/actions/hosted-runners/images/partner
https://docs.github.com/rest/actions/hosted-runners#get-partner-images-for-github-hosted-runners-in-an-organization
- actions.getHostedRunnersLimitsForOrg — Consultar executor da organização
GET /orgs/{org}/actions/hosted-runners/limits
https://docs.github.com/rest/actions/hosted-runners#get-limits-on-github-hosted-runners-for-an-organization
- actions.getHostedRunnersMachineSpecsForOrg — Consultar executor da organização
GET /orgs/{org}/actions/hosted-runners/machine-sizes
https://docs.github.com/rest/actions/hosted-runners#get-github-hosted-runners-machine-specs-for-an-organization
- actions.getHostedRunnersPlatformsForOrg — Consultar executor da organização
GET /orgs/{org}/actions/hosted-runners/platforms
https://docs.github.com/rest/actions/hosted-runners#get-platforms-for-github-hosted-runners-in-an-organization
- actions.getHostedRunnerForOrg — Consultar executor da organização
GET /orgs/{org}/actions/hosted-runners/{hosted_runner_id}
https://docs.github.com/rest/actions/hosted-runners#get-a-github-hosted-runner-for-an-organization
- actions.deleteHostedRunnerForOrg — Excluir executor da organização
DELETE /orgs/{org}/actions/hosted-runners/{hosted_runner_id}
https://docs.github.com/rest/actions/hosted-runners#delete-a-github-hosted-runner-for-an-organization
- actions.updateHostedRunnerForOrg — Atualizar executor da organização
PATCH /orgs/{org}/actions/hosted-runners/{hosted_runner_id}
https://docs.github.com/rest/actions/hosted-runners#update-a-github-hosted-runner-for-an-organization
- oidc.listOidcCustomPropertyInclusionsForOrg — Listar organizações
GET /orgs/{org}/actions/oidc/customization/properties/repo
https://docs.github.com/rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-organization
- oidc.createOidcCustomPropertyInclusionForOrg — Criar organização
POST /orgs/{org}/actions/oidc/customization/properties/repo
https://docs.github.com/rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-organization
- oidc.deleteOidcCustomPropertyInclusionForOrg — Excluir organização
DELETE /orgs/{org}/actions/oidc/customization/properties/repo/{custom_property_name}
https://docs.github.com/rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-organization
- oidc.getOidcCustomSubTemplateForOrg — Consultar organização
GET /orgs/{org}/actions/oidc/customization/sub
https://docs.github.com/rest/actions/oidc#get-the-customization-template-for-an-oidc-subject-claim-for-an-organization
- oidc.updateOidcCustomSubTemplateForOrg — Definir organização
PUT /orgs/{org}/actions/oidc/customization/sub
https://docs.github.com/rest/actions/oidc#set-the-customization-template-for-an-oidc-subject-claim-for-an-organization
- actions.getGithubActionsPermissionsOrganization — Consultar regra de acesso da organização
GET /orgs/{org}/actions/permissions
https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-an-organization
- actions.setGithubActionsPermissionsOrganization — Definir regra de acesso da organização
PUT /orgs/{org}/actions/permissions
https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-an-organization
- actions.getArtifactAndLogRetentionSettingsOrganization — Consultar prazo de retenção da organização
GET /orgs/{org}/actions/permissions/artifact-and-log-retention
https://docs.github.com/rest/actions/permissions#get-artifact-and-log-retention-settings-for-an-organization
- actions.setArtifactAndLogRetentionSettingsOrganization — Definir prazo de retenção da organização
PUT /orgs/{org}/actions/permissions/artifact-and-log-retention
https://docs.github.com/rest/actions/permissions#set-artifact-and-log-retention-settings-for-an-organization
- actions.getForkPrContributorApprovalPermissionsOrganization — Consultar regra de acesso da organização
GET /orgs/{org}/actions/permissions/fork-pr-contributor-approval
https://docs.github.com/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-an-organization
- actions.setForkPrContributorApprovalPermissionsOrganization — Definir regra de acesso da organização
PUT /orgs/{org}/actions/permissions/fork-pr-contributor-approval
https://docs.github.com/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-an-organization
- actions.getPrivateRepoForkPrWorkflowsSettingsOrganization — Consultar fluxo de trabalho automatizado da organização
GET /orgs/{org}/actions/permissions/fork-pr-workflows-private-repos
https://docs.github.com/rest/actions/permissions#get-private-repo-fork-pr-workflow-settings-for-an-organization
- actions.setPrivateRepoForkPrWorkflowsSettingsOrganization — Definir fluxo de trabalho automatizado da organização
PUT /orgs/{org}/actions/permissions/fork-pr-workflows-private-repos
https://docs.github.com/rest/actions/permissions#set-private-repo-fork-pr-workflow-settings-for-an-organization
- actions.listSelectedRepositoriesEnabledGithubActionsOrganization — Listar repositórios de código da organização
GET /orgs/{org}/actions/permissions/repositories
https://docs.github.com/rest/actions/permissions#list-selected-repositories-enabled-for-github-actions-in-an-organization
- actions.setSelectedRepositoriesEnabledGithubActionsOrganization — Definir repositório de código da organização
PUT /orgs/{org}/actions/permissions/repositories
https://docs.github.com/rest/actions/permissions#set-selected-repositories-enabled-for-github-actions-in-an-organization
- actions.enableSelectedRepositoryGithubActionsOrganization — Ativar repositório de código da organização
PUT /orgs/{org}/actions/permissions/repositories/{repository_id}
https://docs.github.com/rest/actions/permissions#enable-a-selected-repository-for-github-actions-in-an-organization
- actions.disableSelectedRepositoryGithubActionsOrganization — Desativar repositório de código da organização
DELETE /orgs/{org}/actions/permissions/repositories/{repository_id}
https://docs.github.com/rest/actions/permissions#disable-a-selected-repository-for-github-actions-in-an-organization
- actions.getAllowedActionsOrganization — Consultar fluxo de trabalho automatizado da organização
GET /orgs/{org}/actions/permissions/selected-actions
https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-an-organization
- actions.setAllowedActionsOrganization — Definir fluxo de trabalho automatizado da organização
PUT /orgs/{org}/actions/permissions/selected-actions
https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-an-organization
- actions.getSelfHostedRunnersPermissionsOrganization — Consultar executor da organização
GET /orgs/{org}/actions/permissions/self-hosted-runners
https://docs.github.com/rest/actions/permissions#get-self-hosted-runners-settings-for-an-organization
- actions.setSelfHostedRunnersPermissionsOrganization — Definir executor da organização
PUT /orgs/{org}/actions/permissions/self-hosted-runners
https://docs.github.com/rest/actions/permissions#set-self-hosted-runners-settings-for-an-organization
- actions.listSelectedRepositoriesSelfHostedRunnersOrganization — Listar executores da organização
GET /orgs/{org}/actions/permissions/self-hosted-runners/repositories
https://docs.github.com/rest/actions/permissions#list-repositories-allowed-to-use-self-hosted-runners-in-an-organization
- actions.setSelectedRepositoriesSelfHostedRunnersOrganization — Definir executor da organização
PUT /orgs/{org}/actions/permissions/self-hosted-runners/repositories
https://docs.github.com/rest/actions/permissions#set-repositories-allowed-to-use-self-hosted-runners-in-an-organization
- actions.enableSelectedRepositorySelfHostedRunnersOrganization — Adicionar executor da organização
PUT /orgs/{org}/actions/permissions/self-hosted-runners/repositories/{repository_id}
https://docs.github.com/rest/actions/permissions#add-a-repository-to-the-list-of-repositories-allowed-to-use-self-hosted-runners-in-an-organization
- actions.disableSelectedRepositorySelfHostedRunnersOrganization — Remover executor da organização
DELETE /orgs/{org}/actions/permissions/self-hosted-runners/repositories/{repository_id}
https://docs.github.com/rest/actions/permissions#remove-a-repository-from-the-list-of-repositories-allowed-to-use-self-hosted-runners-in-an-organization
- actions.getGithubActionsDefaultWorkflowPermissionsOrganization — Consultar fluxo de trabalho automatizado da organização
GET /orgs/{org}/actions/permissions/workflow
https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-an-organization
- actions.setGithubActionsDefaultWorkflowPermissionsOrganization — Definir fluxo de trabalho automatizado da organização
PUT /orgs/{org}/actions/permissions/workflow
https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-an-organization
- actions.listSelfHostedRunnerGroupsForOrg — Listar grupos de executores da organização
GET /orgs/{org}/actions/runner-groups
https://docs.github.com/rest/actions/self-hosted-runner-groups#list-self-hosted-runner-groups-for-an-organization
- actions.createSelfHostedRunnerGroupForOrg — Criar grupo de executores da organização
POST /orgs/{org}/actions/runner-groups
https://docs.github.com/rest/actions/self-hosted-runner-groups#create-a-self-hosted-runner-group-for-an-organization
- actions.getSelfHostedRunnerGroupForOrg — Consultar grupo de executores da organização
GET /orgs/{org}/actions/runner-groups/{runner_group_id}
https://docs.github.com/rest/actions/self-hosted-runner-groups#get-a-self-hosted-runner-group-for-an-organization
- actions.deleteSelfHostedRunnerGroupFromOrg — Excluir grupo de executores da organização
DELETE /orgs/{org}/actions/runner-groups/{runner_group_id}
https://docs.github.com/rest/actions/self-hosted-runner-groups#delete-a-self-hosted-runner-group-from-an-organization
- actions.updateSelfHostedRunnerGroupForOrg — Atualizar grupo de executores da organização
PATCH /orgs/{org}/actions/runner-groups/{runner_group_id}
https://docs.github.com/rest/actions/self-hosted-runner-groups#update-a-self-hosted-runner-group-for-an-organization
- actions.listGithubHostedRunnersInGroupForOrg — Listar executores da organização
GET /orgs/{org}/actions/runner-groups/{runner_group_id}/hosted-runners
https://docs.github.com/rest/actions/self-hosted-runner-groups#list-github-hosted-runners-in-a-group-for-an-organization
- actions.listRepoAccessToSelfHostedRunnerGroupInOrg — Listar grupos de executores da organização
GET /orgs/{org}/actions/runner-groups/{runner_group_id}/repositories
https://docs.github.com/rest/actions/self-hosted-runner-groups#list-repository-access-to-a-self-hosted-runner-group-in-an-organization
- actions.setRepoAccessToSelfHostedRunnerGroupInOrg — Definir grupo de executores da organização
PUT /orgs/{org}/actions/runner-groups/{runner_group_id}/repositories
https://docs.github.com/rest/actions/self-hosted-runner-groups#set-repository-access-for-a-self-hosted-runner-group-in-an-organization
- actions.addRepoAccessToSelfHostedRunnerGroupInOrg — Adicionar grupo de executores da organização
PUT /orgs/{org}/actions/runner-groups/{runner_group_id}/repositories/{repository_id}
https://docs.github.com/rest/actions/self-hosted-runner-groups#add-repository-access-to-a-self-hosted-runner-group-in-an-organization
- actions.removeRepoAccessToSelfHostedRunnerGroupInOrg — Remover grupo de executores da organização
DELETE /orgs/{org}/actions/runner-groups/{runner_group_id}/repositories/{repository_id}
https://docs.github.com/rest/actions/self-hosted-runner-groups#remove-repository-access-to-a-self-hosted-runner-group-in-an-organization
- actions.listSelfHostedRunnersInGroupForOrg — Listar executores da organização
GET /orgs/{org}/actions/runner-groups/{runner_group_id}/runners
https://docs.github.com/rest/actions/self-hosted-runner-groups#list-self-hosted-runners-in-a-group-for-an-organization
- actions.setSelfHostedRunnersInGroupForOrg — Definir executor da organização
PUT /orgs/{org}/actions/runner-groups/{runner_group_id}/runners
https://docs.github.com/rest/actions/self-hosted-runner-groups#set-self-hosted-runners-in-a-group-for-an-organization
- actions.addSelfHostedRunnerToGroupForOrg — Adicionar executor da organização
PUT /orgs/{org}/actions/runner-groups/{runner_group_id}/runners/{runner_id}
https://docs.github.com/rest/actions/self-hosted-runner-groups#add-a-self-hosted-runner-to-a-group-for-an-organization
- actions.removeSelfHostedRunnerFromGroupForOrg — Remover executor da organização
DELETE /orgs/{org}/actions/runner-groups/{runner_group_id}/runners/{runner_id}
https://docs.github.com/rest/actions/self-hosted-runner-groups#remove-a-self-hosted-runner-from-a-group-for-an-organization
- actions.listSelfHostedRunnersForOrg — Listar executores da organização
GET /orgs/{org}/actions/runners
https://docs.github.com/rest/actions/self-hosted-runners#list-self-hosted-runners-for-an-organization
- actions.listRunnerApplicationsForOrg — Listar executores da organização
GET /orgs/{org}/actions/runners/downloads
https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-an-organization
- actions.generateRunnerJitconfigForOrg — Criar executor da organização
POST /orgs/{org}/actions/runners/generate-jitconfig
https://docs.github.com/rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-an-organization
- actions.createRegistrationTokenForOrg — Criar token de acesso da organização
POST /orgs/{org}/actions/runners/registration-token
https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-an-organization
- actions.createRemoveTokenForOrg — Criar token de acesso da organização
POST /orgs/{org}/actions/runners/remove-token
https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-an-organization
- actions.getSelfHostedRunnerForOrg — Consultar executor da organização
GET /orgs/{org}/actions/runners/{runner_id}
https://docs.github.com/rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-an-organization
- actions.deleteSelfHostedRunnerFromOrg — Excluir executor da organização
DELETE /orgs/{org}/actions/runners/{runner_id}
https://docs.github.com/rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-an-organization
- actions.listLabelsForSelfHostedRunnerForOrg — Listar executores da organização
GET /orgs/{org}/actions/runners/{runner_id}/labels
https://docs.github.com/rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-an-organization
- actions.setCustomLabelsForSelfHostedRunnerForOrg — Definir executor da organização
PUT /orgs/{org}/actions/runners/{runner_id}/labels
https://docs.github.com/rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-an-organization
- actions.addCustomLabelsToSelfHostedRunnerForOrg — Adicionar executor da organização
POST /orgs/{org}/actions/runners/{runner_id}/labels
https://docs.github.com/rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-an-organization
- actions.removeAllCustomLabelsFromSelfHostedRunnerForOrg — Listar executores da organização
DELETE /orgs/{org}/actions/runners/{runner_id}/labels
https://docs.github.com/rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-an-organization
- actions.removeCustomLabelFromSelfHostedRunnerForOrg — Remover executor da organização
DELETE /orgs/{org}/actions/runners/{runner_id}/labels/{name}
https://docs.github.com/rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-an-organization
- actions.listOrgSecrets — Listar segredos da organização
GET /orgs/{org}/actions/secrets
https://docs.github.com/rest/actions/secrets#list-organization-secrets
- actions.getOrgPublicKey — Consultar chave pública da organização
GET /orgs/{org}/actions/secrets/public-key
https://docs.github.com/rest/actions/secrets#get-an-organization-public-key
- actions.getOrgSecret — Consultar segredo da organização
GET /orgs/{org}/actions/secrets/{secret_name}
https://docs.github.com/rest/actions/secrets#get-an-organization-secret
- actions.createOrUpdateOrgSecret — Criar segredo da organização
PUT /orgs/{org}/actions/secrets/{secret_name}
https://docs.github.com/rest/actions/secrets#create-or-update-an-organization-secret
- actions.deleteOrgSecret — Excluir segredo da organização
DELETE /orgs/{org}/actions/secrets/{secret_name}
https://docs.github.com/rest/actions/secrets#delete-an-organization-secret
- actions.listSelectedReposForOrgSecret — Listar segredos da organização
GET /orgs/{org}/actions/secrets/{secret_name}/repositories
https://docs.github.com/rest/actions/secrets#list-selected-repositories-for-an-organization-secret
- actions.setSelectedReposForOrgSecret — Definir segredo da organização
PUT /orgs/{org}/actions/secrets/{secret_name}/repositories
https://docs.github.com/rest/actions/secrets#set-selected-repositories-for-an-organization-secret
- actions.addSelectedRepoToOrgSecret — Adicionar segredo da organização
PUT /orgs/{org}/actions/secrets/{secret_name}/repositories/{repository_id}
https://docs.github.com/rest/actions/secrets#add-selected-repository-to-an-organization-secret
- actions.removeSelectedRepoFromOrgSecret — Remover segredo da organização
DELETE /orgs/{org}/actions/secrets/{secret_name}/repositories/{repository_id}
https://docs.github.com/rest/actions/secrets#remove-selected-repository-from-an-organization-secret
- actions.listOrgVariables — Listar organizações
GET /orgs/{org}/actions/variables
https://docs.github.com/rest/actions/variables#list-organization-variables
- actions.createOrgVariable — Criar organização
POST /orgs/{org}/actions/variables
https://docs.github.com/rest/actions/variables#create-an-organization-variable
- actions.getOrgVariable — Consultar organização
GET /orgs/{org}/actions/variables/{name}
https://docs.github.com/rest/actions/variables#get-an-organization-variable
- actions.deleteOrgVariable — Excluir organização
DELETE /orgs/{org}/actions/variables/{name}
https://docs.github.com/rest/actions/variables#delete-an-organization-variable
- actions.updateOrgVariable — Atualizar organização
PATCH /orgs/{org}/actions/variables/{name}
https://docs.github.com/rest/actions/variables#update-an-organization-variable
- actions.listSelectedReposForOrgVariable — Listar repositórios de código da organização
GET /orgs/{org}/actions/variables/{name}/repositories
https://docs.github.com/rest/actions/variables#list-selected-repositories-for-an-organization-variable
- actions.setSelectedReposForOrgVariable — Definir repositório de código da organização
PUT /orgs/{org}/actions/variables/{name}/repositories
https://docs.github.com/rest/actions/variables#set-selected-repositories-for-an-organization-variable
- actions.addSelectedRepoToOrgVariable — Adicionar repositório de código da organização
PUT /orgs/{org}/actions/variables/{name}/repositories/{repository_id}
https://docs.github.com/rest/actions/variables#add-selected-repository-to-an-organization-variable
- actions.removeSelectedRepoFromOrgVariable — Remover repositório de código da organização
DELETE /orgs/{org}/actions/variables/{name}/repositories/{repository_id}
https://docs.github.com/rest/actions/variables#remove-selected-repository-from-an-organization-variable
- agents.listOrgSecrets — Listar segredos da organização
GET /orgs/{org}/agents/secrets
https://docs.github.com/rest/agents/secrets#list-organization-secrets
- agents.getOrgPublicKey — Consultar chave pública da organização
GET /orgs/{org}/agents/secrets/public-key
https://docs.github.com/rest/agents/secrets#get-an-organization-public-key
- agents.getOrgSecret — Consultar segredo da organização
GET /orgs/{org}/agents/secrets/{secret_name}
https://docs.github.com/rest/agents/secrets#get-an-organization-secret
- agents.createOrUpdateOrgSecret — Criar segredo da organização
PUT /orgs/{org}/agents/secrets/{secret_name}
https://docs.github.com/rest/agents/secrets#create-or-update-an-organization-secret
- agents.deleteOrgSecret — Excluir segredo da organização
DELETE /orgs/{org}/agents/secrets/{secret_name}
https://docs.github.com/rest/agents/secrets#delete-an-organization-secret
- agents.listSelectedReposForOrgSecret — Listar segredos da organização
GET /orgs/{org}/agents/secrets/{secret_name}/repositories
https://docs.github.com/rest/agents/secrets#list-selected-repositories-for-an-organization-secret
- agents.setSelectedReposForOrgSecret — Definir segredo da organização
PUT /orgs/{org}/agents/secrets/{secret_name}/repositories
https://docs.github.com/rest/agents/secrets#set-selected-repositories-for-an-organization-secret
- agents.addSelectedRepoToOrgSecret — Adicionar segredo da organização
PUT /orgs/{org}/agents/secrets/{secret_name}/repositories/{repository_id}
https://docs.github.com/rest/agents/secrets#add-selected-repository-to-an-organization-secret
- agents.removeSelectedRepoFromOrgSecret — Remover segredo da organização
DELETE /orgs/{org}/agents/secrets/{secret_name}/repositories/{repository_id}
https://docs.github.com/rest/agents/secrets#remove-selected-repository-from-an-organization-secret
- agents.listOrgVariables — Listar organizações
GET /orgs/{org}/agents/variables
https://docs.github.com/rest/agents/variables#list-organization-variables
- agents.createOrgVariable — Criar organização
POST /orgs/{org}/agents/variables
https://docs.github.com/rest/agents/variables#create-an-organization-variable
- agents.getOrgVariable — Consultar organização
GET /orgs/{org}/agents/variables/{name}
https://docs.github.com/rest/agents/variables#get-an-organization-variable
- agents.deleteOrgVariable — Excluir organização
DELETE /orgs/{org}/agents/variables/{name}
https://docs.github.com/rest/agents/variables#delete-an-organization-variable
- agents.updateOrgVariable — Atualizar organização
PATCH /orgs/{org}/agents/variables/{name}
https://docs.github.com/rest/agents/variables#update-an-organization-variable
- agents.listSelectedReposForOrgVariable — Listar repositórios de código da organização
GET /orgs/{org}/agents/variables/{name}/repositories
https://docs.github.com/rest/agents/variables#list-selected-repositories-for-an-organization-variable
- agents.setSelectedReposForOrgVariable — Definir repositório de código da organização
PUT /orgs/{org}/agents/variables/{name}/repositories
https://docs.github.com/rest/agents/variables#set-selected-repositories-for-an-organization-variable
- agents.addSelectedRepoToOrgVariable — Adicionar repositório de código da organização
PUT /orgs/{org}/agents/variables/{name}/repositories/{repository_id}
https://docs.github.com/rest/agents/variables#add-selected-repository-to-an-organization-variable
- agents.removeSelectedRepoFromOrgVariable — Remover repositório de código da organização
DELETE /orgs/{org}/agents/variables/{name}/repositories/{repository_id}
https://docs.github.com/rest/agents/variables#remove-selected-repository-from-an-organization-variable
- orgs.createArtifactDeploymentRecord — Criar implantação
POST /orgs/{org}/artifacts/metadata/deployment-record
https://docs.github.com/rest/orgs/artifact-metadata#create-an-artifact-deployment-record
- orgs.setClusterDeploymentRecords — Definir implantação
POST /orgs/{org}/artifacts/metadata/deployment-record/cluster/{cluster}
https://docs.github.com/rest/orgs/artifact-metadata#set-cluster-deployment-records
- orgs.createArtifactStorageRecord — Criar artefato de compilação
POST /orgs/{org}/artifacts/metadata/storage-record
https://docs.github.com/rest/orgs/artifact-metadata#create-artifact-metadata-storage-record
- orgs.listArtifactDeploymentRecords — Listar implantações
GET /orgs/{org}/artifacts/{subject_digest}/metadata/deployment-records
https://docs.github.com/rest/orgs/artifact-metadata#list-artifact-deployment-records
- orgs.listArtifactStorageRecords — Listar artefatos de compilação
GET /orgs/{org}/artifacts/{subject_digest}/metadata/storage-records
https://docs.github.com/rest/orgs/artifact-metadata#list-artifact-storage-records
- orgs.listAttestationsBulk — List attestations by bulk subject digests
POST /orgs/{org}/attestations/bulk-list
https://docs.github.com/rest/orgs/attestations#list-attestations-by-bulk-subject-digests
- orgs.deleteAttestationsBulk — Delete attestations in bulk
POST /orgs/{org}/attestations/delete-request
https://docs.github.com/rest/orgs/attestations#delete-attestations-in-bulk
- orgs.deleteAttestationsBySubjectDigest — Delete attestations by subject digest
DELETE /orgs/{org}/attestations/digest/{subject_digest}
https://docs.github.com/rest/orgs/attestations#delete-attestations-by-subject-digest
- orgs.listAttestationRepositories — Listar repositórios de código
GET /orgs/{org}/attestations/repositories
https://docs.github.com/rest/orgs/attestations#list-attestation-repositories
- orgs.deleteAttestationsById — Delete attestations by ID
DELETE /orgs/{org}/attestations/{attestation_id}
https://docs.github.com/rest/orgs/attestations#delete-attestations-by-id
- orgs.listAttestations — List attestations
GET /orgs/{org}/attestations/{subject_digest}
https://docs.github.com/rest/orgs/attestations#list-attestations
- orgs.listBlockedUsers — Listar organizações
GET /orgs/{org}/blocks
https://docs.github.com/rest/orgs/blocking#list-users-blocked-by-an-organization
- orgs.checkBlockedUser — Verificar organização
GET /orgs/{org}/blocks/{username}
https://docs.github.com/rest/orgs/blocking#check-if-a-user-is-blocked-by-an-organization
- orgs.blockUser — Block a user from an organization
PUT /orgs/{org}/blocks/{username}
https://docs.github.com/rest/orgs/blocking#block-a-user-from-an-organization
- orgs.unblockUser — Unblock a user from an organization
DELETE /orgs/{org}/blocks/{username}
https://docs.github.com/rest/orgs/blocking#unblock-a-user-from-an-organization
- campaigns.listOrgCampaigns — Listar organizações
GET /orgs/{org}/campaigns
https://docs.github.com/rest/campaigns/campaigns#list-campaigns-for-an-organization
- campaigns.createCampaign — Criar organização
POST /orgs/{org}/campaigns
https://docs.github.com/rest/campaigns/campaigns#create-a-campaign-for-an-organization
- campaigns.getCampaignSummary — Consultar organização
GET /orgs/{org}/campaigns/{campaign_number}
https://docs.github.com/rest/campaigns/campaigns#get-a-campaign-for-an-organization
- campaigns.deleteCampaign — Excluir organização
DELETE /orgs/{org}/campaigns/{campaign_number}
https://docs.github.com/rest/campaigns/campaigns#delete-a-campaign-for-an-organization
- campaigns.updateCampaign — Atualizar campanha
PATCH /orgs/{org}/campaigns/{campaign_number}
https://docs.github.com/rest/campaigns/campaigns#update-a-campaign
- codeScanning.listAlertsForOrg — Listar alertas da organização
GET /orgs/{org}/code-scanning/alerts
https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization
- codeSecurity.getConfigurationsForOrg — Consultar organização
GET /orgs/{org}/code-security/configurations
https://docs.github.com/rest/code-security/configurations#get-code-security-configurations-for-an-organization
- codeSecurity.createConfiguration — Criar configuração
POST /orgs/{org}/code-security/configurations
https://docs.github.com/rest/code-security/configurations#create-a-code-security-configuration
- codeSecurity.getDefaultConfigurations — Consultar configuração
GET /orgs/{org}/code-security/configurations/defaults
https://docs.github.com/rest/code-security/configurations#get-default-code-security-configurations
- codeSecurity.detachConfiguration — Detach configurations from repositories
DELETE /orgs/{org}/code-security/configurations/detach
https://docs.github.com/rest/code-security/configurations#detach-configurations-from-repositories
- codeSecurity.getConfiguration — Consultar configuração
GET /orgs/{org}/code-security/configurations/{configuration_id}
https://docs.github.com/rest/code-security/configurations#get-a-code-security-configuration
- codeSecurity.deleteConfiguration — Excluir configuração
DELETE /orgs/{org}/code-security/configurations/{configuration_id}
https://docs.github.com/rest/code-security/configurations#delete-a-code-security-configuration
- codeSecurity.updateConfiguration — Atualizar configuração
PATCH /orgs/{org}/code-security/configurations/{configuration_id}
https://docs.github.com/rest/code-security/configurations#update-a-code-security-configuration
- codeSecurity.attachConfiguration — Attach a configuration to repositories
POST /orgs/{org}/code-security/configurations/{configuration_id}/attach
https://docs.github.com/rest/code-security/configurations#attach-a-configuration-to-repositories
- codeSecurity.setConfigurationAsDefault — Definir organização
PUT /orgs/{org}/code-security/configurations/{configuration_id}/defaults
https://docs.github.com/rest/code-security/configurations#set-a-code-security-configuration-as-a-default-for-an-organization
- codeSecurity.getRepositoriesForConfiguration — Consultar repositório de código
GET /orgs/{org}/code-security/configurations/{configuration_id}/repositories
https://docs.github.com/rest/code-security/configurations#get-repositories-associated-with-a-code-security-configuration
- codespaces.listInOrganization — Listar organizações
GET /orgs/{org}/codespaces
https://docs.github.com/rest/codespaces/organizations#list-codespaces-for-the-organization
- codespaces.setCodespacesAccess — Manage access control for organization codespaces
PUT /orgs/{org}/codespaces/access
https://docs.github.com/rest/codespaces/organizations#manage-access-control-for-organization-codespaces
- codespaces.setCodespacesAccessUsers — Adicionar regra de acesso da organização
POST /orgs/{org}/codespaces/access/selected_users
https://docs.github.com/rest/codespaces/organizations#add-users-to-codespaces-access-for-an-organization
- codespaces.deleteCodespacesAccessUsers — Remover regra de acesso da organização
DELETE /orgs/{org}/codespaces/access/selected_users
https://docs.github.com/rest/codespaces/organizations#remove-users-from-codespaces-access-for-an-organization
- codespaces.listOrgSecrets — Listar segredos da organização
GET /orgs/{org}/codespaces/secrets
https://docs.github.com/rest/codespaces/organization-secrets#list-organization-secrets
- codespaces.getOrgPublicKey — Consultar chave pública da organização
GET /orgs/{org}/codespaces/secrets/public-key
https://docs.github.com/rest/codespaces/organization-secrets#get-an-organization-public-key
- codespaces.getOrgSecret — Consultar segredo da organização
GET /orgs/{org}/codespaces/secrets/{secret_name}
https://docs.github.com/rest/codespaces/organization-secrets#get-an-organization-secret
- codespaces.createOrUpdateOrgSecret — Criar segredo da organização
PUT /orgs/{org}/codespaces/secrets/{secret_name}
https://docs.github.com/rest/codespaces/organization-secrets#create-or-update-an-organization-secret
- codespaces.deleteOrgSecret — Excluir segredo da organização
DELETE /orgs/{org}/codespaces/secrets/{secret_name}
https://docs.github.com/rest/codespaces/organization-secrets#delete-an-organization-secret
- codespaces.listSelectedReposForOrgSecret — Listar segredos da organização
GET /orgs/{org}/codespaces/secrets/{secret_name}/repositories
https://docs.github.com/rest/codespaces/organization-secrets#list-selected-repositories-for-an-organization-secret
- codespaces.setSelectedReposForOrgSecret — Definir segredo da organização
PUT /orgs/{org}/codespaces/secrets/{secret_name}/repositories
https://docs.github.com/rest/codespaces/organization-secrets#set-selected-repositories-for-an-organization-secret
- codespaces.addSelectedRepoToOrgSecret — Adicionar segredo da organização
PUT /orgs/{org}/codespaces/secrets/{secret_name}/repositories/{repository_id}
https://docs.github.com/rest/codespaces/organization-secrets#add-selected-repository-to-an-organization-secret
- codespaces.removeSelectedRepoFromOrgSecret — Remover segredo da organização
DELETE /orgs/{org}/codespaces/secrets/{secret_name}/repositories/{repository_id}
https://docs.github.com/rest/codespaces/organization-secrets#remove-selected-repository-from-an-organization-secret
- copilotSpaces.listForOrg — Listar organizações
GET /orgs/{org}/copilot-spaces
https://docs.github.com/rest/copilot-spaces/copilot-spaces#list-organization-copilot-spaces
- copilotSpaces.createForOrg — Criar organização
POST /orgs/{org}/copilot-spaces
https://docs.github.com/rest/copilot-spaces/copilot-spaces#create-an-organization-copilot-space
- copilotSpaces.getForOrg — Consultar organização
GET /orgs/{org}/copilot-spaces/{space_number}
https://docs.github.com/rest/copilot-spaces/copilot-spaces#get-an-organization-copilot-space
- copilotSpaces.updateForOrg — Definir organização
PUT /orgs/{org}/copilot-spaces/{space_number}
https://docs.github.com/rest/copilot-spaces/copilot-spaces#set-an-organization-copilot-space
- copilotSpaces.deleteForOrg — Excluir organização
DELETE /orgs/{org}/copilot-spaces/{space_number}
https://docs.github.com/rest/copilot-spaces/copilot-spaces#delete-an-organization-copilot-space
- copilotSpaces.listCollaboratorsForOrg — Listar colaboradores da organização
GET /orgs/{org}/copilot-spaces/{space_number}/collaborators
https://docs.github.com/rest/copilot-spaces/collaborators#list-collaborators-for-an-organization-copilot-space
- copilotSpaces.addCollaboratorForOrg — Adicionar colaborador da organização
POST /orgs/{org}/copilot-spaces/{space_number}/collaborators
https://docs.github.com/rest/copilot-spaces/collaborators#add-a-collaborator-to-an-organization-copilot-space
- copilotSpaces.updateCollaboratorForOrg — Definir colaborador da organização
PUT /orgs/{org}/copilot-spaces/{space_number}/collaborators/{actor_type}/{actor_identifier}
https://docs.github.com/rest/copilot-spaces/collaborators#set-a-collaborator-role-for-an-organization-copilot-space
- copilotSpaces.removeCollaboratorForOrg — Remover colaborador da organização
DELETE /orgs/{org}/copilot-spaces/{space_number}/collaborators/{actor_type}/{actor_identifier}
https://docs.github.com/rest/copilot-spaces/collaborators#remove-a-collaborator-from-an-organization-copilot-space
- copilotSpaces.listResourcesForOrg — Listar organizações
GET /orgs/{org}/copilot-spaces/{space_number}/resources
https://docs.github.com/rest/copilot-spaces/resources#list-resources-for-an-organization-copilot-space
- copilotSpaces.createResourceForOrg — Criar organização
POST /orgs/{org}/copilot-spaces/{space_number}/resources
https://docs.github.com/rest/copilot-spaces/resources#create-a-resource-for-an-organization-copilot-space
- copilotSpaces.getResourceForOrg — Consultar organização
GET /orgs/{org}/copilot-spaces/{space_number}/resources/{space_resource_id}
https://docs.github.com/rest/copilot-spaces/resources#get-a-resource-for-an-organization-copilot-space
- copilotSpaces.updateResourceForOrg — Definir organização
PUT /orgs/{org}/copilot-spaces/{space_number}/resources/{space_resource_id}
https://docs.github.com/rest/copilot-spaces/resources#set-a-resource-for-an-organization-copilot-space
- copilotSpaces.deleteResourceForOrg — Excluir organização
DELETE /orgs/{org}/copilot-spaces/{space_number}/resources/{space_resource_id}
https://docs.github.com/rest/copilot-spaces/resources#delete-a-resource-from-an-organization-copilot-space
- copilot.getCopilotOrganizationDetails — Consultar organização
GET /orgs/{org}/copilot/billing
https://docs.github.com/rest/copilot/copilot-user-management#get-copilot-seat-information-and-settings-for-an-organization
- copilot.listCopilotSeats — Listar organizações
GET /orgs/{org}/copilot/billing/seats
https://docs.github.com/rest/copilot/copilot-user-management#list-all-copilot-seat-assignments-for-an-organization
- copilot.addCopilotSeatsForTeams — Adicionar assinatura da organização
POST /orgs/{org}/copilot/billing/selected_teams
https://docs.github.com/rest/copilot/copilot-user-management#add-teams-to-the-copilot-subscription-for-an-organization
- copilot.cancelCopilotSeatAssignmentForTeams — Remover assinatura da organização
DELETE /orgs/{org}/copilot/billing/selected_teams
https://docs.github.com/rest/copilot/copilot-user-management#remove-teams-from-the-copilot-subscription-for-an-organization
- copilot.addCopilotSeatsForUsers — Adicionar assinatura da organização
POST /orgs/{org}/copilot/billing/selected_users
https://docs.github.com/rest/copilot/copilot-user-management#add-users-to-the-copilot-subscription-for-an-organization
- copilot.cancelCopilotSeatAssignmentForUsers — Remover assinatura da organização
DELETE /orgs/{org}/copilot/billing/selected_users
https://docs.github.com/rest/copilot/copilot-user-management#remove-users-from-the-copilot-subscription-for-an-organization
- copilot.getCopilotCodingAgentPermissionsOrganization — Consultar regra de acesso da organização
GET /orgs/{org}/copilot/coding-agent/permissions
https://docs.github.com/rest/copilot/copilot-coding-agent-management#get-copilot-cloud-agent-permissions-for-an-organization
- copilot.setCopilotCodingAgentPermissionsOrganization — Definir regra de acesso da organização
PUT /orgs/{org}/copilot/coding-agent/permissions
https://docs.github.com/rest/copilot/copilot-coding-agent-management#set-copilot-cloud-agent-permissions-for-an-organization
- copilot.listCopilotCodingAgentSelectedRepositoriesForOrganization — Listar repositórios de código da organização
GET /orgs/{org}/copilot/coding-agent/permissions/repositories
https://docs.github.com/rest/copilot/copilot-coding-agent-management#list-repositories-enabled-for-copilot-cloud-agent-in-an-organization
- copilot.setCopilotCodingAgentSelectedRepositoriesForOrganization — Definir repositório de código da organização
PUT /orgs/{org}/copilot/coding-agent/permissions/repositories
https://docs.github.com/rest/copilot/copilot-coding-agent-management#set-selected-repositories-for-copilot-cloud-agent-in-an-organization
- copilot.enableCopilotCodingAgentForRepositoryInOrganization — Ativar repositório de código da organização
PUT /orgs/{org}/copilot/coding-agent/permissions/repositories/{repository_id}
https://docs.github.com/rest/copilot/copilot-coding-agent-management#enable-a-repository-for-copilot-cloud-agent-in-an-organization
- copilot.disableCopilotCodingAgentForRepositoryInOrganization — Desativar repositório de código da organização
DELETE /orgs/{org}/copilot/coding-agent/permissions/repositories/{repository_id}
https://docs.github.com/rest/copilot/copilot-coding-agent-management#disable-a-repository-for-copilot-cloud-agent-in-an-organization
- copilot.copilotContentExclusionForOrganization — Consultar organização
GET /orgs/{org}/copilot/content_exclusion
https://docs.github.com/rest/copilot/copilot-content-exclusion-management#get-copilot-content-exclusion-rules-for-an-organization
- copilot.setCopilotContentExclusionForOrganization — Definir organização
PUT /orgs/{org}/copilot/content_exclusion
https://docs.github.com/rest/copilot/copilot-content-exclusion-management#set-copilot-content-exclusion-rules-for-an-organization
- copilot.copilotOrganizationOneDayUsageMetrics — Consultar organização
GET /orgs/{org}/copilot/metrics/reports/organization-1-day
https://docs.github.com/rest/copilot/copilot-usage-metrics#get-copilot-organization-usage-metrics-for-a-specific-day
- copilot.copilotOrganizationUsageMetrics — Consultar organização
GET /orgs/{org}/copilot/metrics/reports/organization-28-day/latest
https://docs.github.com/rest/copilot/copilot-usage-metrics#get-copilot-organization-usage-metrics
- copilot.copilotOrganizationUserTeamsOneDayReport — Consultar organização
GET /orgs/{org}/copilot/metrics/reports/user-teams-1-day
https://docs.github.com/rest/copilot/copilot-usage-metrics#get-copilot-organization-user-teams-report-for-a-specific-day
- copilot.copilotOrganizationUsersOneDayUsageMetrics — Consultar organização
GET /orgs/{org}/copilot/metrics/reports/users-1-day
https://docs.github.com/rest/copilot/copilot-usage-metrics#get-copilot-organization-users-usage-metrics-for-a-specific-day
- copilot.copilotOrganizationUsersUsageMetrics — Consultar organização
GET /orgs/{org}/copilot/metrics/reports/users-28-day/latest
https://docs.github.com/rest/copilot/copilot-usage-metrics#get-copilot-organization-users-usage-metrics
- dependabot.listAlertsForOrg — Listar alertas da organização
GET /orgs/{org}/dependabot/alerts
https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-organization
- dependabot.repositoryAccessForOrg — Lists the repositories Dependabot can access in an organization
GET /orgs/{org}/dependabot/repository-access
https://docs.github.com/rest/dependabot/repository-access#lists-the-repositories-dependabot-can-access-in-an-organization
- dependabot.updateRepositoryAccessForOrg — Updates Dependabot's repository access list for an organization
PATCH /orgs/{org}/dependabot/repository-access
https://docs.github.com/rest/dependabot/repository-access#updates-dependabots-repository-access-list-for-an-organization
- dependabot.setRepositoryAccessDefaultLevel — Definir regra de acesso no repositório
PUT /orgs/{org}/dependabot/repository-access/default-level
https://docs.github.com/rest/dependabot/repository-access#set-the-default-repository-access-level-for-dependabot
- dependabot.listOrgSecrets — Listar segredos da organização
GET /orgs/{org}/dependabot/secrets
https://docs.github.com/rest/dependabot/secrets#list-organization-secrets
- dependabot.getOrgPublicKey — Consultar chave pública da organização
GET /orgs/{org}/dependabot/secrets/public-key
https://docs.github.com/rest/dependabot/secrets#get-an-organization-public-key
- dependabot.getOrgSecret — Consultar segredo da organização
GET /orgs/{org}/dependabot/secrets/{secret_name}
https://docs.github.com/rest/dependabot/secrets#get-an-organization-secret
- dependabot.createOrUpdateOrgSecret — Criar segredo da organização
PUT /orgs/{org}/dependabot/secrets/{secret_name}
https://docs.github.com/rest/dependabot/secrets#create-or-update-an-organization-secret
- dependabot.deleteOrgSecret — Excluir segredo da organização
DELETE /orgs/{org}/dependabot/secrets/{secret_name}
https://docs.github.com/rest/dependabot/secrets#delete-an-organization-secret
- dependabot.listSelectedReposForOrgSecret — Listar segredos da organização
GET /orgs/{org}/dependabot/secrets/{secret_name}/repositories
https://docs.github.com/rest/dependabot/secrets#list-selected-repositories-for-an-organization-secret
- dependabot.setSelectedReposForOrgSecret — Definir segredo da organização
PUT /orgs/{org}/dependabot/secrets/{secret_name}/repositories
https://docs.github.com/rest/dependabot/secrets#set-selected-repositories-for-an-organization-secret
- dependabot.addSelectedRepoToOrgSecret — Adicionar segredo da organização
PUT /orgs/{org}/dependabot/secrets/{secret_name}/repositories/{repository_id}
https://docs.github.com/rest/dependabot/secrets#add-selected-repository-to-an-organization-secret
- dependabot.removeSelectedRepoFromOrgSecret — Remover segredo da organização
DELETE /orgs/{org}/dependabot/secrets/{secret_name}/repositories/{repository_id}
https://docs.github.com/rest/dependabot/secrets#remove-selected-repository-from-an-organization-secret
- packages.listDockerMigrationConflictingPackagesForOrganization — Consultar pacote de software da organização
GET /orgs/{org}/docker/conflicts
https://docs.github.com/rest/packages/packages#get-list-of-conflicting-packages-during-docker-migration-for-organization
- activity.listPublicOrgEvents — Listar eventos da organização
GET /orgs/{org}/events
https://docs.github.com/rest/activity/events#list-public-organization-events
- orgs.listFailedInvitations — Listar convites da organização
GET /orgs/{org}/failed_invitations
https://docs.github.com/rest/orgs/members#list-failed-organization-invitations
- orgs.listWebhooks — Listar webhooks da organização
GET /orgs/{org}/hooks
https://docs.github.com/rest/orgs/webhooks#list-organization-webhooks
- orgs.createWebhook — Criar webhook da organização
POST /orgs/{org}/hooks
https://docs.github.com/rest/orgs/webhooks#create-an-organization-webhook
- orgs.getWebhook — Consultar webhook da organização
GET /orgs/{org}/hooks/{hook_id}
https://docs.github.com/rest/orgs/webhooks#get-an-organization-webhook
- orgs.deleteWebhook — Excluir webhook da organização
DELETE /orgs/{org}/hooks/{hook_id}
https://docs.github.com/rest/orgs/webhooks#delete-an-organization-webhook
- orgs.updateWebhook — Atualizar webhook da organização
PATCH /orgs/{org}/hooks/{hook_id}
https://docs.github.com/rest/orgs/webhooks#update-an-organization-webhook
- orgs.getWebhookConfigForOrg — Consultar webhook da organização
GET /orgs/{org}/hooks/{hook_id}/config
https://docs.github.com/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization
- orgs.updateWebhookConfigForOrg — Atualizar webhook da organização
PATCH /orgs/{org}/hooks/{hook_id}/config
https://docs.github.com/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization
- orgs.listWebhookDeliveries — Listar webhooks da organização
GET /orgs/{org}/hooks/{hook_id}/deliveries
https://docs.github.com/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook
- orgs.getWebhookDelivery — Consultar entrega de webhook da organização
GET /orgs/{org}/hooks/{hook_id}/deliveries/{delivery_id}
https://docs.github.com/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook
- orgs.redeliverWebhookDelivery — Redeliver a delivery for an organization webhook
POST /orgs/{org}/hooks/{hook_id}/deliveries/{delivery_id}/attempts
https://docs.github.com/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook
- orgs.pingWebhook — Ping an organization webhook
POST /orgs/{org}/hooks/{hook_id}/pings
https://docs.github.com/rest/orgs/webhooks#ping-an-organization-webhook
- apiInsights.getRouteStatsByActor — Get route stats by actor
GET /orgs/{org}/insights/api/route-stats/{actor_type}/{actor_id}
https://docs.github.com/rest/orgs/api-insights#get-route-stats-by-actor
- apiInsights.getSubjectStats — Get subject stats
GET /orgs/{org}/insights/api/subject-stats
https://docs.github.com/rest/orgs/api-insights#get-subject-stats
- apiInsights.getSummaryStats — Get summary stats
GET /orgs/{org}/insights/api/summary-stats
https://docs.github.com/rest/orgs/api-insights#get-summary-stats
- apiInsights.getSummaryStatsByUser — Consultar usuário
GET /orgs/{org}/insights/api/summary-stats/users/{user_id}
https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-user
- apiInsights.getSummaryStatsByActor — Get summary stats by actor
GET /orgs/{org}/insights/api/summary-stats/{actor_type}/{actor_id}
https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-actor
- apiInsights.getTimeStats — Get time stats
GET /orgs/{org}/insights/api/time-stats
https://docs.github.com/rest/orgs/api-insights#get-time-stats
- apiInsights.getTimeStatsByUser — Consultar usuário
GET /orgs/{org}/insights/api/time-stats/users/{user_id}
https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-user
- apiInsights.getTimeStatsByActor — Get time stats by actor
GET /orgs/{org}/insights/api/time-stats/{actor_type}/{actor_id}
https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-actor
- apiInsights.getUserStats — Consultar usuário
GET /orgs/{org}/insights/api/user-stats/{user_id}
https://docs.github.com/rest/orgs/api-insights#get-user-stats
- apps.getOrgInstallation — Consultar organização
GET /orgs/{org}/installation
https://docs.github.com/rest/apps/apps#get-an-organization-installation-for-the-authenticated-app
- orgs.listAppInstallations — Listar organizações
GET /orgs/{org}/installations
https://docs.github.com/rest/orgs/orgs#list-app-installations-for-an-organization
- interactions.getRestrictionsForOrg — Consultar organização
GET /orgs/{org}/interaction-limits
https://docs.github.com/rest/interactions/orgs#get-interaction-restrictions-for-an-organization
- interactions.setRestrictionsForOrg — Definir organização
PUT /orgs/{org}/interaction-limits
https://docs.github.com/rest/interactions/orgs#set-interaction-restrictions-for-an-organization
- interactions.removeRestrictionsForOrg — Remover organização
DELETE /orgs/{org}/interaction-limits
https://docs.github.com/rest/interactions/orgs#remove-interaction-restrictions-for-an-organization
- orgs.listPendingInvitations — Listar convites da organização
GET /orgs/{org}/invitations
https://docs.github.com/rest/orgs/members#list-pending-organization-invitations
- orgs.createInvitation — Criar convite da organização
POST /orgs/{org}/invitations
https://docs.github.com/rest/orgs/members#create-an-organization-invitation
- orgs.cancelInvitation — Cancelar convite da organização
DELETE /orgs/{org}/invitations/{invitation_id}
https://docs.github.com/rest/orgs/members#cancel-an-organization-invitation
- orgs.listInvitationTeams — Listar convites da organização
GET /orgs/{org}/invitations/{invitation_id}/teams
https://docs.github.com/rest/orgs/members#list-organization-invitation-teams
- orgs.listIssueFields — Listar campos de chamados da organização
GET /orgs/{org}/issue-fields
https://docs.github.com/rest/orgs/issue-fields#list-issue-fields-for-an-organization
- orgs.createIssueField — Criar campo de chamado da organização
POST /orgs/{org}/issue-fields
https://docs.github.com/rest/orgs/issue-fields#create-issue-field-for-an-organization
- orgs.deleteIssueField — Excluir campo de chamado da organização
DELETE /orgs/{org}/issue-fields/{issue_field_id}
https://docs.github.com/rest/orgs/issue-fields#delete-issue-field-for-an-organization
- orgs.updateIssueField — Atualizar campo de chamado da organização
PATCH /orgs/{org}/issue-fields/{issue_field_id}
https://docs.github.com/rest/orgs/issue-fields#update-issue-field-for-an-organization
- orgs.listIssueTypes — Listar tipos de chamados da organização
GET /orgs/{org}/issue-types
https://docs.github.com/rest/orgs/issue-types#list-issue-types-for-an-organization
- orgs.createIssueType — Criar tipo de chamado da organização
POST /orgs/{org}/issue-types
https://docs.github.com/rest/orgs/issue-types#create-issue-type-for-an-organization
- orgs.updateIssueType — Atualizar tipo de chamado da organização
PUT /orgs/{org}/issue-types/{issue_type_id}
https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization
- orgs.deleteIssueType — Excluir tipo de chamado da organização
DELETE /orgs/{org}/issue-types/{issue_type_id}
https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization
- issues.listForOrg — Listar chamados da organização
GET /orgs/{org}/issues
https://docs.github.com/rest/issues/issues#list-organization-issues-assigned-to-the-authenticated-user
- orgs.listMembers — Listar organizações
GET /orgs/{org}/members
https://docs.github.com/rest/orgs/members#list-organization-members
- orgs.checkMembershipForUser — Verificar vínculo de membro da organização
GET /orgs/{org}/members/{username}
https://docs.github.com/rest/orgs/members#check-organization-membership-for-a-user
- orgs.removeMember — Remover organização
DELETE /orgs/{org}/members/{username}
https://docs.github.com/rest/orgs/members#remove-an-organization-member
- codespaces.getCodespacesForUserInOrg — Listar organizações
GET /orgs/{org}/members/{username}/codespaces
https://docs.github.com/rest/codespaces/organizations#list-codespaces-for-a-user-in-organization
- codespaces.deleteFromOrganization — Excluir organização
DELETE /orgs/{org}/members/{username}/codespaces/{codespace_name}
https://docs.github.com/rest/codespaces/organizations#delete-a-codespace-from-the-organization
- codespaces.stopInOrganization — Parar organização
POST /orgs/{org}/members/{username}/codespaces/{codespace_name}/stop
https://docs.github.com/rest/codespaces/organizations#stop-a-codespace-for-an-organization-user
- copilot.getCopilotSeatDetailsForUser — Consultar usuário
GET /orgs/{org}/members/{username}/copilot
https://docs.github.com/rest/copilot/copilot-user-management#get-copilot-seat-assignment-details-for-a-user
- orgs.getMembershipForUser — Consultar vínculo de membro da organização
GET /orgs/{org}/memberships/{username}
https://docs.github.com/rest/orgs/members#get-organization-membership-for-a-user
- orgs.setMembershipForUser — Definir vínculo de membro da organização
PUT /orgs/{org}/memberships/{username}
https://docs.github.com/rest/orgs/members#set-organization-membership-for-a-user
- orgs.removeMembershipForUser — Remover vínculo de membro da organização
DELETE /orgs/{org}/memberships/{username}
https://docs.github.com/rest/orgs/members#remove-organization-membership-for-a-user
- migrations.listForOrg — Listar organizações
GET /orgs/{org}/migrations
https://docs.github.com/rest/migrations/orgs#list-organization-migrations
- migrations.startForOrg — Iniciar organização
POST /orgs/{org}/migrations
https://docs.github.com/rest/migrations/orgs#start-an-organization-migration
- migrations.getStatusForOrg — Consultar organização
GET /orgs/{org}/migrations/{migration_id}
https://docs.github.com/rest/migrations/orgs#get-an-organization-migration-status
- migrations.downloadArchiveForOrg — Baixar organização
GET /orgs/{org}/migrations/{migration_id}/archive
https://docs.github.com/rest/migrations/orgs#download-an-organization-migration-archive
- migrations.deleteArchiveForOrg — Excluir organização
DELETE /orgs/{org}/migrations/{migration_id}/archive
https://docs.github.com/rest/migrations/orgs#delete-an-organization-migration-archive
- migrations.unlockRepoForOrg — Unlock an organization repository
DELETE /orgs/{org}/migrations/{migration_id}/repos/{repo_name}/lock
https://docs.github.com/rest/migrations/orgs#unlock-an-organization-repository
- migrations.listReposForOrg — Listar repositórios de código da organização
GET /orgs/{org}/migrations/{migration_id}/repositories
https://docs.github.com/rest/migrations/orgs#list-repositories-in-an-organization-migration
- orgs.listOrgRoles — Listar funções da organização
GET /orgs/{org}/organization-roles
https://docs.github.com/rest/orgs/organization-roles#get-all-organization-roles-for-an-organization
- orgs.revokeAllOrgRolesTeam — Listar funções da organização
DELETE /orgs/{org}/organization-roles/teams/{team_slug}
https://docs.github.com/rest/orgs/organization-roles#remove-all-organization-roles-for-a-team
- orgs.assignTeamToOrgRole — Assign an organization role to a team
PUT /orgs/{org}/organization-roles/teams/{team_slug}/{role_id}
https://docs.github.com/rest/orgs/organization-roles#assign-an-organization-role-to-a-team
- orgs.revokeOrgRoleTeam — Remover função da organização
DELETE /orgs/{org}/organization-roles/teams/{team_slug}/{role_id}
https://docs.github.com/rest/orgs/organization-roles#remove-an-organization-role-from-a-team
- orgs.revokeAllOrgRolesUser — Listar funções da organização
DELETE /orgs/{org}/organization-roles/users/{username}
https://docs.github.com/rest/orgs/organization-roles#remove-all-organization-roles-for-a-user
- orgs.assignUserToOrgRole — Assign an organization role to a user
PUT /orgs/{org}/organization-roles/users/{username}/{role_id}
https://docs.github.com/rest/orgs/organization-roles#assign-an-organization-role-to-a-user
- orgs.revokeOrgRoleUser — Remover função da organização
DELETE /orgs/{org}/organization-roles/users/{username}/{role_id}
https://docs.github.com/rest/orgs/organization-roles#remove-an-organization-role-from-a-user
- orgs.getOrgRole — Consultar função da organização
GET /orgs/{org}/organization-roles/{role_id}
https://docs.github.com/rest/orgs/organization-roles#get-an-organization-role
- orgs.listOrgRoleTeams — Listar funções da organização
GET /orgs/{org}/organization-roles/{role_id}/teams
https://docs.github.com/rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role
- orgs.listOrgRoleUsers — Listar funções da organização
GET /orgs/{org}/organization-roles/{role_id}/users
https://docs.github.com/rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role
- orgs.listOutsideCollaborators — Listar colaboradores da organização
GET /orgs/{org}/outside_collaborators
https://docs.github.com/rest/orgs/outside-collaborators#list-outside-collaborators-for-an-organization
- orgs.convertMemberToOutsideCollaborator — Convert an organization member to outside collaborator
PUT /orgs/{org}/outside_collaborators/{username}
https://docs.github.com/rest/orgs/outside-collaborators#convert-an-organization-member-to-outside-collaborator
- orgs.removeOutsideCollaborator — Remover colaborador da organização
DELETE /orgs/{org}/outside_collaborators/{username}
https://docs.github.com/rest/orgs/outside-collaborators#remove-outside-collaborator-from-an-organization
- packages.listPackagesForOrganization — Listar pacotes de software da organização
GET /orgs/{org}/packages
https://docs.github.com/rest/packages/packages#list-packages-for-an-organization
- packages.getPackageForOrganization — Consultar pacote de software da organização
GET /orgs/{org}/packages/{package_type}/{package_name}
https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization
- packages.deletePackageForOrg — Excluir pacote de software da organização
DELETE /orgs/{org}/packages/{package_type}/{package_name}
https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization
- packages.restorePackageForOrg — Restaurar pacote de software da organização
POST /orgs/{org}/packages/{package_type}/{package_name}/restore
https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization
- packages.getAllPackageVersionsForPackageOwnedByOrg — Listar versões de pacotes da organização
GET /orgs/{org}/packages/{package_type}/{package_name}/versions
https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-an-organization
- packages.getPackageVersionForOrganization — Consultar versão de pacote da organização
GET /orgs/{org}/packages/{package_type}/{package_name}/versions/{package_version_id}
https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization
- packages.deletePackageVersionForOrg — Excluir versão de pacote da organização
DELETE /orgs/{org}/packages/{package_type}/{package_name}/versions/{package_version_id}
https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization
- packages.restorePackageVersionForOrg — Restaurar versão de pacote da organização
POST /orgs/{org}/packages/{package_type}/{package_name}/versions/{package_version_id}/restore
https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization
- orgs.listPatGrantRequests — Listar tokens de acesso da organização
GET /orgs/{org}/personal-access-token-requests
https://docs.github.com/rest/orgs/personal-access-tokens#list-requests-to-access-organization-resources-with-fine-grained-personal-access-tokens
- orgs.reviewPatGrantRequestsInBulk — Review requests to access organization resources with fine-grained personal access tokens
POST /orgs/{org}/personal-access-token-requests
https://docs.github.com/rest/orgs/personal-access-tokens#review-requests-to-access-organization-resources-with-fine-grained-personal-access-tokens
- orgs.reviewPatGrantRequest — Review a request to access organization resources with a fine-grained personal access token
POST /orgs/{org}/personal-access-token-requests/{pat_request_id}
https://docs.github.com/rest/orgs/personal-access-tokens#review-a-request-to-access-organization-resources-with-a-fine-grained-personal-access-token
- orgs.listPatGrantRequestRepositories — Listar tokens de acesso
GET /orgs/{org}/personal-access-token-requests/{pat_request_id}/repositories
https://docs.github.com/rest/orgs/personal-access-tokens#list-repositories-requested-to-be-accessed-by-a-fine-grained-personal-access-token
- orgs.listPatGrants — Listar tokens de acesso da organização
GET /orgs/{org}/personal-access-tokens
https://docs.github.com/rest/orgs/personal-access-tokens#list-fine-grained-personal-access-tokens-with-access-to-organization-resources
- orgs.updatePatAccesses — Atualizar token de acesso da organização
POST /orgs/{org}/personal-access-tokens
https://docs.github.com/rest/orgs/personal-access-tokens#update-the-access-to-organization-resources-via-fine-grained-personal-access-tokens
- orgs.updatePatAccess — Atualizar token de acesso da organização
POST /orgs/{org}/personal-access-tokens/{pat_id}
https://docs.github.com/rest/orgs/personal-access-tokens#update-the-access-a-fine-grained-personal-access-token-has-to-organization-resources
- orgs.listPatGrantRepositories — Listar tokens de acesso
GET /orgs/{org}/personal-access-tokens/{pat_id}/repositories
https://docs.github.com/rest/orgs/personal-access-tokens#list-repositories-a-fine-grained-personal-access-token-has-access-to
- privateRegistries.listOrgPrivateRegistries — Listar organizações
GET /orgs/{org}/private-registries
https://docs.github.com/rest/private-registries/organization-configurations#list-private-registries-for-an-organization
- privateRegistries.createOrgPrivateRegistry — Criar organização
POST /orgs/{org}/private-registries
https://docs.github.com/rest/private-registries/organization-configurations#create-a-private-registry-for-an-organization
- privateRegistries.getOrgPublicKey — Consultar chave pública da organização
GET /orgs/{org}/private-registries/public-key
https://docs.github.com/rest/private-registries/organization-configurations#get-private-registries-public-key-for-an-organization
- privateRegistries.getOrgPrivateRegistry — Consultar organização
GET /orgs/{org}/private-registries/{secret_name}
https://docs.github.com/rest/private-registries/organization-configurations#get-a-private-registry-for-an-organization
- privateRegistries.deleteOrgPrivateRegistry — Excluir organização
DELETE /orgs/{org}/private-registries/{secret_name}
https://docs.github.com/rest/private-registries/organization-configurations#delete-a-private-registry-for-an-organization
- privateRegistries.updateOrgPrivateRegistry — Atualizar organização
PATCH /orgs/{org}/private-registries/{secret_name}
https://docs.github.com/rest/private-registries/organization-configurations#update-a-private-registry-for-an-organization
- projects.listForOrg — Listar organizações
GET /orgs/{org}/projectsV2
https://docs.github.com/rest/projects/projects#list-projects-for-organization
- projects.getForOrg — Consultar organização
GET /orgs/{org}/projectsV2/{project_number}
https://docs.github.com/rest/projects/projects#get-project-for-organization
- projects.createDraftItemForOrg — Criar rascunho da organização
POST /orgs/{org}/projectsV2/{project_number}/drafts
https://docs.github.com/rest/projects/drafts#create-draft-item-for-organization-owned-project
- projects.listFieldsForOrg — Listar organizações
GET /orgs/{org}/projectsV2/{project_number}/fields
https://docs.github.com/rest/projects/fields#list-project-fields-for-organization
- projects.addFieldForOrg — Adicionar organização
POST /orgs/{org}/projectsV2/{project_number}/fields
https://docs.github.com/rest/projects/fields#add-a-field-to-an-organization-owned-project
- projects.getFieldForOrg — Consultar organização
GET /orgs/{org}/projectsV2/{project_number}/fields/{field_id}
https://docs.github.com/rest/projects/fields#get-project-field-for-organization
- projects.listItemsForOrg — Listar organizações
GET /orgs/{org}/projectsV2/{project_number}/items
https://docs.github.com/rest/projects/items#list-items-for-an-organization-owned-project
- projects.addItemForOrg — Adicionar organização
POST /orgs/{org}/projectsV2/{project_number}/items
https://docs.github.com/rest/projects/items#add-item-to-organization-owned-project
- projects.getOrgItem — Consultar organização
GET /orgs/{org}/projectsV2/{project_number}/items/{item_id}
https://docs.github.com/rest/projects/items#get-an-item-for-an-organization-owned-project
- projects.deleteItemForOrg — Excluir organização
DELETE /orgs/{org}/projectsV2/{project_number}/items/{item_id}
https://docs.github.com/rest/projects/items#delete-project-item-for-organization
- projects.updateItemForOrg — Atualizar organização
PATCH /orgs/{org}/projectsV2/{project_number}/items/{item_id}
https://docs.github.com/rest/projects/items#update-project-item-for-organization
- projects.createViewForOrg — Criar organização
POST /orgs/{org}/projectsV2/{project_number}/views
https://docs.github.com/rest/projects/views#create-a-view-for-an-organization-owned-project
- projects.listViewItemsForOrg — Listar organizações
GET /orgs/{org}/projectsV2/{project_number}/views/{view_number}/items
https://docs.github.com/rest/projects/items#list-items-for-an-organization-project-view
- orgs.customPropertiesForReposGetOrganizationDefinitions — Listar organizações
GET /orgs/{org}/properties/schema
https://docs.github.com/rest/orgs/custom-properties#get-all-custom-properties-for-an-organization
- orgs.customPropertiesForReposCreateOrUpdateOrganizationDefinitions — Criar organização
PATCH /orgs/{org}/properties/schema
https://docs.github.com/rest/orgs/custom-properties#create-or-update-custom-properties-for-an-organization
- orgs.customPropertiesForReposGetOrganizationDefinition — Consultar organização
GET /orgs/{org}/properties/schema/{custom_property_name}
https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization
- orgs.customPropertiesForReposCreateOrUpdateOrganizationDefinition — Criar organização
PUT /orgs/{org}/properties/schema/{custom_property_name}
https://docs.github.com/rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization
- orgs.customPropertiesForReposDeleteOrganizationDefinition — Remover organização
DELETE /orgs/{org}/properties/schema/{custom_property_name}
https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization
- orgs.customPropertiesForReposGetOrganizationValues — Listar repositórios de código da organização
GET /orgs/{org}/properties/values
https://docs.github.com/rest/orgs/custom-properties#list-custom-property-values-for-organization-repositories
- orgs.customPropertiesForReposCreateOrUpdateOrganizationValues — Criar repositório de código da organização
PATCH /orgs/{org}/properties/values
https://docs.github.com/rest/orgs/custom-properties#create-or-update-custom-property-values-for-organization-repositories
- orgs.listPublicMembers — Listar organizações
GET /orgs/{org}/public_members
https://docs.github.com/rest/orgs/members#list-public-organization-members
- orgs.checkPublicMembershipForUser — Verificar vínculo de membro da organização
GET /orgs/{org}/public_members/{username}
https://docs.github.com/rest/orgs/members#check-public-organization-membership-for-a-user
- orgs.setPublicMembershipForAuthenticatedUser — Definir vínculo de membro da organização
PUT /orgs/{org}/public_members/{username}
https://docs.github.com/rest/orgs/members#set-public-organization-membership-for-the-authenticated-user
- orgs.removePublicMembershipForAuthenticatedUser — Remover vínculo de membro da organização
DELETE /orgs/{org}/public_members/{username}
https://docs.github.com/rest/orgs/members#remove-public-organization-membership-for-the-authenticated-user
- repos.listForOrg — Listar repositórios de código da organização
GET /orgs/{org}/repos
https://docs.github.com/rest/repos/repos#list-organization-repositories
- repos.createInOrg — Criar repositório de código da organização
POST /orgs/{org}/repos
https://docs.github.com/rest/repos/repos#create-an-organization-repository
- repos.getOrgRulesets — Listar conjuntos de regras da organização
GET /orgs/{org}/rulesets
https://docs.github.com/rest/orgs/rules#get-all-organization-repository-rulesets
- repos.createOrgRuleset — Criar conjunto de regras da organização
POST /orgs/{org}/rulesets
https://docs.github.com/rest/orgs/rules#create-an-organization-repository-ruleset
- repos.getOrgRuleSuites — Listar organizações
GET /orgs/{org}/rulesets/rule-suites
https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites
- repos.getOrgRuleSuite — Consultar organização
GET /orgs/{org}/rulesets/rule-suites/{rule_suite_id}
https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite
- repos.getOrgRuleset — Consultar conjunto de regras da organização
GET /orgs/{org}/rulesets/{ruleset_id}
https://docs.github.com/rest/orgs/rules#get-an-organization-repository-ruleset
- repos.updateOrgRuleset — Atualizar conjunto de regras da organização
PUT /orgs/{org}/rulesets/{ruleset_id}
https://docs.github.com/rest/orgs/rules#update-an-organization-repository-ruleset
- repos.deleteOrgRuleset — Excluir conjunto de regras da organização
DELETE /orgs/{org}/rulesets/{ruleset_id}
https://docs.github.com/rest/orgs/rules#delete-an-organization-repository-ruleset
- orgs.getOrgRulesetHistory — Consultar conjunto de regras da organização
GET /orgs/{org}/rulesets/{ruleset_id}/history
https://docs.github.com/rest/orgs/rules#get-organization-ruleset-history
- orgs.getOrgRulesetVersion — Consultar conjunto de regras da organização
GET /orgs/{org}/rulesets/{ruleset_id}/history/{version_id}
https://docs.github.com/rest/orgs/rules#get-organization-ruleset-version
- secretScanning.listAlertsForOrg — Listar segredos da organização
GET /orgs/{org}/secret-scanning/alerts
https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization
- secretScanning.listOrgPatternConfigs — Listar organizações
GET /orgs/{org}/secret-scanning/pattern-configurations
https://docs.github.com/rest/secret-scanning/push-protection#list-organization-pattern-configurations
- secretScanning.updateOrgPatternConfigs — Atualizar organização
PATCH /orgs/{org}/secret-scanning/pattern-configurations
https://docs.github.com/rest/secret-scanning/push-protection#update-organization-pattern-configurations
- securityAdvisories.listOrgRepositoryAdvisories — Listar avisos de segurança da organização
GET /orgs/{org}/security-advisories
https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories-for-an-organization
- orgs.listSecurityManagerTeams — Listar equipes
GET /orgs/{org}/security-managers
https://docs.github.com/rest/orgs/security-managers#list-security-manager-teams
- orgs.addSecurityManagerTeam — Adicionar equipe
PUT /orgs/{org}/security-managers/teams/{team_slug}
https://docs.github.com/rest/orgs/security-managers#add-a-security-manager-team
- orgs.removeSecurityManagerTeam — Remover equipe
DELETE /orgs/{org}/security-managers/teams/{team_slug}
https://docs.github.com/rest/orgs/security-managers#remove-a-security-manager-team
- orgs.getImmutableReleasesSettings — Consultar versão da organização
GET /orgs/{org}/settings/immutable-releases
https://docs.github.com/rest/orgs/orgs#get-immutable-releases-settings-for-an-organization
- orgs.setImmutableReleasesSettings — Definir versão da organização
PUT /orgs/{org}/settings/immutable-releases
https://docs.github.com/rest/orgs/orgs#set-immutable-releases-settings-for-an-organization
- orgs.getImmutableReleasesSettingsRepositories — Listar versões
GET /orgs/{org}/settings/immutable-releases/repositories
https://docs.github.com/rest/orgs/orgs#list-selected-repositories-for-immutable-releases-enforcement
- orgs.setImmutableReleasesSettingsRepositories — Definir versão
PUT /orgs/{org}/settings/immutable-releases/repositories
https://docs.github.com/rest/orgs/orgs#set-selected-repositories-for-immutable-releases-enforcement
- orgs.enableSelectedRepositoryImmutableReleasesOrganization — Ativar versão da organização
PUT /orgs/{org}/settings/immutable-releases/repositories/{repository_id}
https://docs.github.com/rest/orgs/orgs#enable-a-selected-repository-for-immutable-releases-in-an-organization
- orgs.disableSelectedRepositoryImmutableReleasesOrganization — Desativar versão da organização
DELETE /orgs/{org}/settings/immutable-releases/repositories/{repository_id}
https://docs.github.com/rest/orgs/orgs#disable-a-selected-repository-for-immutable-releases-in-an-organization
- hostedCompute.listNetworkConfigurationsForOrg — Listar configurações de rede da organização
GET /orgs/{org}/settings/network-configurations
https://docs.github.com/rest/orgs/network-configurations#list-hosted-compute-network-configurations-for-an-organization
- hostedCompute.createNetworkConfigurationForOrg — Criar configuração de rede da organização
POST /orgs/{org}/settings/network-configurations
https://docs.github.com/rest/orgs/network-configurations#create-a-hosted-compute-network-configuration-for-an-organization
- hostedCompute.getNetworkConfigurationForOrg — Consultar configuração de rede da organização
GET /orgs/{org}/settings/network-configurations/{network_configuration_id}
https://docs.github.com/rest/orgs/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization
- hostedCompute.deleteNetworkConfigurationFromOrg — Excluir configuração de rede da organização
DELETE /orgs/{org}/settings/network-configurations/{network_configuration_id}
https://docs.github.com/rest/orgs/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization
- hostedCompute.updateNetworkConfigurationForOrg — Atualizar configuração de rede da organização
PATCH /orgs/{org}/settings/network-configurations/{network_configuration_id}
https://docs.github.com/rest/orgs/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization
- hostedCompute.getNetworkSettingsForOrg — Consultar configuração de rede da organização
GET /orgs/{org}/settings/network-settings/{network_settings_id}
https://docs.github.com/rest/orgs/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-organization
- teams.list — Listar equipes
GET /orgs/{org}/teams
https://docs.github.com/rest/teams/teams#list-teams
- teams.create — Criar equipe
POST /orgs/{org}/teams
https://docs.github.com/rest/teams/teams#create-a-team
- teams.getByName — Consultar equipe
GET /orgs/{org}/teams/{team_slug}
https://docs.github.com/rest/teams/teams#get-a-team-by-name
- teams.deleteInOrg — Excluir equipe
DELETE /orgs/{org}/teams/{team_slug}
https://docs.github.com/rest/teams/teams#delete-a-team
- teams.updateInOrg — Atualizar equipe
PATCH /orgs/{org}/teams/{team_slug}
https://docs.github.com/rest/teams/teams#update-a-team
- teams.listPendingInvitationsInOrg — Listar convites
GET /orgs/{org}/teams/{team_slug}/invitations
https://docs.github.com/rest/teams/members#list-pending-team-invitations
- teams.listMembersInOrg — Listar equipes
GET /orgs/{org}/teams/{team_slug}/members
https://docs.github.com/rest/teams/members#list-team-members
- teams.getMembershipForUserInOrg — Consultar vínculo de membro
GET /orgs/{org}/teams/{team_slug}/memberships/{username}
https://docs.github.com/rest/teams/members#get-team-membership-for-a-user
- teams.addOrUpdateMembershipForUserInOrg — Adicionar vínculo de membro
PUT /orgs/{org}/teams/{team_slug}/memberships/{username}
https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user
- teams.removeMembershipForUserInOrg — Remover vínculo de membro
DELETE /orgs/{org}/teams/{team_slug}/memberships/{username}
https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user
- teams.listReposInOrg — Listar repositórios de código
GET /orgs/{org}/teams/{team_slug}/repos
https://docs.github.com/rest/teams/teams#list-team-repositories
- teams.checkPermissionsForRepoInOrg — Verificar regra de acesso no repositório
GET /orgs/{org}/teams/{team_slug}/repos/{owner}/{repo}
https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository
- teams.addOrUpdateRepoPermissionsInOrg — Adicionar regra de acesso no repositório
PUT /orgs/{org}/teams/{team_slug}/repos/{owner}/{repo}
https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions
- teams.removeRepoInOrg — Remover repositório de código
DELETE /orgs/{org}/teams/{team_slug}/repos/{owner}/{repo}
https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team
- teams.listChildInOrg — Listar equipes
GET /orgs/{org}/teams/{team_slug}/teams
https://docs.github.com/rest/teams/teams#list-child-teams
- orgs.enableOrDisableSecurityProductOnAllOrgRepos — Ativar organização
POST /orgs/{org}/{security_product}/{enablement}
https://docs.github.com/rest/orgs/orgs#enable-or-disable-a-security-feature-for-an-organization
- rateLimit.get — Consultar usuário
GET /rate_limit
https://docs.github.com/rest/rate-limit/rate-limit#get-rate-limit-status-for-the-authenticated-user
- repos.get — Ler informações do repositório
GET /repos/{owner}/{repo}
https://docs.github.com/rest/repos/repos#get-a-repository
- repos.delete — Excluir um repositório
DELETE /repos/{owner}/{repo}
https://docs.github.com/rest/repos/repos#delete-a-repository
- repos.update — Atualizar repositório de código
PATCH /repos/{owner}/{repo}
https://docs.github.com/rest/repos/repos#update-a-repository
- actions.listArtifactsForRepo — Listar artefatos de compilação no repositório
GET /repos/{owner}/{repo}/actions/artifacts
https://docs.github.com/rest/actions/artifacts#list-artifacts-for-a-repository
- actions.getArtifact — Consultar artefato de compilação
GET /repos/{owner}/{repo}/actions/artifacts/{artifact_id}
https://docs.github.com/rest/actions/artifacts#get-an-artifact
- actions.deleteArtifact — Excluir artefato de compilação
DELETE /repos/{owner}/{repo}/actions/artifacts/{artifact_id}
https://docs.github.com/rest/actions/artifacts#delete-an-artifact
- actions.downloadArtifact — Baixar artefato de compilação
GET /repos/{owner}/{repo}/actions/artifacts/{artifact_id}/{archive_format}
https://docs.github.com/rest/actions/artifacts#download-an-artifact
- actions.getActionsCacheRetentionLimitForRepository — Consultar prazo de retenção no repositório
GET /repos/{owner}/{repo}/actions/cache/retention-limit
https://docs.github.com/rest/actions/cache#get-github-actions-cache-retention-limit-for-a-repository
- actions.setActionsCacheRetentionLimitForRepository — Definir prazo de retenção no repositório
PUT /repos/{owner}/{repo}/actions/cache/retention-limit
https://docs.github.com/rest/actions/cache#set-github-actions-cache-retention-limit-for-a-repository
- actions.getActionsCacheStorageLimitForRepository — Consultar dado em cache no repositório
GET /repos/{owner}/{repo}/actions/cache/storage-limit
https://docs.github.com/rest/actions/cache#get-github-actions-cache-storage-limit-for-a-repository
- actions.setActionsCacheStorageLimitForRepository — Definir dado em cache no repositório
PUT /repos/{owner}/{repo}/actions/cache/storage-limit
https://docs.github.com/rest/actions/cache#set-github-actions-cache-storage-limit-for-a-repository
- actions.getActionsCacheUsage — Consultar dado em cache no repositório
GET /repos/{owner}/{repo}/actions/cache/usage
https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-a-repository
- actions.getActionsCacheList — Listar dados em cache no repositório
GET /repos/{owner}/{repo}/actions/caches
https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repository
- actions.deleteActionsCacheByKey — Excluir dado em cache no repositório
DELETE /repos/{owner}/{repo}/actions/caches
https://docs.github.com/rest/actions/cache#delete-github-actions-caches-for-a-repository-using-a-cache-key
- actions.deleteActionsCacheById — Excluir dado em cache no repositório
DELETE /repos/{owner}/{repo}/actions/caches/{cache_id}
https://docs.github.com/rest/actions/cache#delete-a-github-actions-cache-for-a-repository-using-a-cache-id
- actions.listConcurrencyGroupsForRepository — Listar repositórios de código
GET /repos/{owner}/{repo}/actions/concurrency_groups
https://docs.github.com/rest/actions/concurrency-groups#list-concurrency-groups-for-a-repository
- actions.getConcurrencyGroupForRepository — Consultar repositório de código
GET /repos/{owner}/{repo}/actions/concurrency_groups/{concurrency_group_name}
https://docs.github.com/rest/actions/concurrency-groups#get-a-concurrency-group-for-a-repository
- actions.getJobForWorkflowRun — Consultar execução de fluxo de trabalho
GET /repos/{owner}/{repo}/actions/jobs/{job_id}
https://docs.github.com/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run
- actions.downloadJobLogsForWorkflowRun — Baixar execução de fluxo de trabalho
GET /repos/{owner}/{repo}/actions/jobs/{job_id}/logs
https://docs.github.com/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run
- actions.reRunJobForWorkflowRun — Re-run a job from a workflow run
POST /repos/{owner}/{repo}/actions/jobs/{job_id}/rerun
https://docs.github.com/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run
- actions.getCustomOidcSubClaimForRepo — Consultar repositório de código
GET /repos/{owner}/{repo}/actions/oidc/customization/sub
https://docs.github.com/rest/actions/oidc#get-the-customization-template-for-an-oidc-subject-claim-for-a-repository
- actions.setCustomOidcSubClaimForRepo — Definir repositório de código
PUT /repos/{owner}/{repo}/actions/oidc/customization/sub
https://docs.github.com/rest/actions/oidc#set-the-customization-template-for-an-oidc-subject-claim-for-a-repository
- actions.listRepoOrganizationSecrets — Listar segredos da organização
GET /repos/{owner}/{repo}/actions/organization-secrets
https://docs.github.com/rest/actions/secrets#list-repository-organization-secrets
- actions.listRepoOrganizationVariables — Listar repositórios de código da organização
GET /repos/{owner}/{repo}/actions/organization-variables
https://docs.github.com/rest/actions/variables#list-repository-organization-variables
- actions.getGithubActionsPermissionsRepository — Consultar regra de acesso no repositório
GET /repos/{owner}/{repo}/actions/permissions
https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-a-repository
- actions.setGithubActionsPermissionsRepository — Definir regra de acesso no repositório
PUT /repos/{owner}/{repo}/actions/permissions
https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-a-repository
- actions.getWorkflowAccessToRepository — Consultar fluxo de trabalho automatizado no repositório
GET /repos/{owner}/{repo}/actions/permissions/access
https://docs.github.com/rest/actions/permissions#get-the-level-of-access-for-workflows-outside-of-the-repository
- actions.setWorkflowAccessToRepository — Definir fluxo de trabalho automatizado no repositório
PUT /repos/{owner}/{repo}/actions/permissions/access
https://docs.github.com/rest/actions/permissions#set-the-level-of-access-for-workflows-outside-of-the-repository
- actions.getArtifactAndLogRetentionSettingsRepository — Consultar prazo de retenção no repositório
GET /repos/{owner}/{repo}/actions/permissions/artifact-and-log-retention
https://docs.github.com/rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository
- actions.setArtifactAndLogRetentionSettingsRepository — Definir prazo de retenção no repositório
PUT /repos/{owner}/{repo}/actions/permissions/artifact-and-log-retention
https://docs.github.com/rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository
- actions.getForkPrContributorApprovalPermissionsRepository — Consultar regra de acesso no repositório
GET /repos/{owner}/{repo}/actions/permissions/fork-pr-contributor-approval
https://docs.github.com/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository
- actions.setForkPrContributorApprovalPermissionsRepository — Definir regra de acesso no repositório
PUT /repos/{owner}/{repo}/actions/permissions/fork-pr-contributor-approval
https://docs.github.com/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository
- actions.getPrivateRepoForkPrWorkflowsSettingsRepository — Consultar fluxo de trabalho automatizado no repositório
GET /repos/{owner}/{repo}/actions/permissions/fork-pr-workflows-private-repos
https://docs.github.com/rest/actions/permissions#get-private-repo-fork-pr-workflow-settings-for-a-repository
- actions.setPrivateRepoForkPrWorkflowsSettingsRepository — Definir fluxo de trabalho automatizado no repositório
PUT /repos/{owner}/{repo}/actions/permissions/fork-pr-workflows-private-repos
https://docs.github.com/rest/actions/permissions#set-private-repo-fork-pr-workflow-settings-for-a-repository
- actions.getAllowedActionsRepository — Consultar fluxo de trabalho automatizado no repositório
GET /repos/{owner}/{repo}/actions/permissions/selected-actions
https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository
- actions.setAllowedActionsRepository — Definir fluxo de trabalho automatizado no repositório
PUT /repos/{owner}/{repo}/actions/permissions/selected-actions
https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository
- actions.getGithubActionsDefaultWorkflowPermissionsRepository — Consultar fluxo de trabalho automatizado no repositório
GET /repos/{owner}/{repo}/actions/permissions/workflow
https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-a-repository
- actions.setGithubActionsDefaultWorkflowPermissionsRepository — Definir fluxo de trabalho automatizado no repositório
PUT /repos/{owner}/{repo}/actions/permissions/workflow
https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-a-repository
- actions.listSelfHostedRunnersForRepo — Listar executores no repositório
GET /repos/{owner}/{repo}/actions/runners
https://docs.github.com/rest/actions/self-hosted-runners#list-self-hosted-runners-for-a-repository
- actions.listRunnerApplicationsForRepo — Listar executores no repositório
GET /repos/{owner}/{repo}/actions/runners/downloads
https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository
- actions.generateRunnerJitconfigForRepo — Criar executor no repositório
POST /repos/{owner}/{repo}/actions/runners/generate-jitconfig
https://docs.github.com/rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-a-repository
- actions.createRegistrationTokenForRepo — Criar token de acesso no repositório
POST /repos/{owner}/{repo}/actions/runners/registration-token
https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository
- actions.createRemoveTokenForRepo — Criar token de acesso no repositório
POST /repos/{owner}/{repo}/actions/runners/remove-token
https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository
- actions.getSelfHostedRunnerForRepo — Consultar executor no repositório
GET /repos/{owner}/{repo}/actions/runners/{runner_id}
https://docs.github.com/rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-a-repository
- actions.deleteSelfHostedRunnerFromRepo — Excluir executor no repositório
DELETE /repos/{owner}/{repo}/actions/runners/{runner_id}
https://docs.github.com/rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-a-repository
- actions.listLabelsForSelfHostedRunnerForRepo — Listar executores no repositório
GET /repos/{owner}/{repo}/actions/runners/{runner_id}/labels
https://docs.github.com/rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-a-repository
- actions.setCustomLabelsForSelfHostedRunnerForRepo — Definir executor no repositório
PUT /repos/{owner}/{repo}/actions/runners/{runner_id}/labels
https://docs.github.com/rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-a-repository
- actions.addCustomLabelsToSelfHostedRunnerForRepo — Adicionar executor no repositório
POST /repos/{owner}/{repo}/actions/runners/{runner_id}/labels
https://docs.github.com/rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-a-repository
- actions.removeAllCustomLabelsFromSelfHostedRunnerForRepo — Listar executores no repositório
DELETE /repos/{owner}/{repo}/actions/runners/{runner_id}/labels
https://docs.github.com/rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-a-repository
- actions.removeCustomLabelFromSelfHostedRunnerForRepo — Remover executor no repositório
DELETE /repos/{owner}/{repo}/actions/runners/{runner_id}/labels/{name}
https://docs.github.com/rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-a-repository
- actions.listWorkflowRunsForRepo — Listar execuções de fluxos de trabalho no repositório
GET /repos/{owner}/{repo}/actions/runs
https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-repository
- actions.getWorkflowRun — Consultar execução de fluxo de trabalho
GET /repos/{owner}/{repo}/actions/runs/{run_id}
https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run
- actions.deleteWorkflowRun — Excluir execução de fluxo de trabalho
DELETE /repos/{owner}/{repo}/actions/runs/{run_id}
https://docs.github.com/rest/actions/workflow-runs#delete-a-workflow-run
- actions.getReviewsForRun — Consultar execução de fluxo de trabalho
GET /repos/{owner}/{repo}/actions/runs/{run_id}/approvals
https://docs.github.com/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run
- actions.approveWorkflowRun — Aprovar execução de fluxo de trabalho
POST /repos/{owner}/{repo}/actions/runs/{run_id}/approve
https://docs.github.com/rest/actions/workflow-runs#approve-a-workflow-run-for-a-fork-pull-request
- actions.listWorkflowRunArtifacts — Listar execuções de fluxos de trabalho
GET /repos/{owner}/{repo}/actions/runs/{run_id}/artifacts
https://docs.github.com/rest/actions/artifacts#list-workflow-run-artifacts
- actions.getWorkflowRunAttempt — Consultar execução de fluxo de trabalho
GET /repos/{owner}/{repo}/actions/runs/{run_id}/attempts/{attempt_number}
https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run-attempt
- actions.listJobsForWorkflowRunAttempt — Listar execuções de fluxos de trabalho
GET /repos/{owner}/{repo}/actions/runs/{run_id}/attempts/{attempt_number}/jobs
https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt
- actions.downloadWorkflowRunAttemptLogs — Baixar execução de fluxo de trabalho
GET /repos/{owner}/{repo}/actions/runs/{run_id}/attempts/{attempt_number}/logs
https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-attempt-logs
- actions.cancelWorkflowRun — Cancelar execução de fluxo de trabalho
POST /repos/{owner}/{repo}/actions/runs/{run_id}/cancel
https://docs.github.com/rest/actions/workflow-runs#cancel-a-workflow-run
- actions.listConcurrencyGroupsForWorkflowRun — Listar execuções de fluxos de trabalho
GET /repos/{owner}/{repo}/actions/runs/{run_id}/concurrency_groups
https://docs.github.com/rest/actions/concurrency-groups#list-concurrency-groups-for-a-workflow-run
- actions.reviewCustomGatesForRun — Review custom deployment protection rules for a workflow run
POST /repos/{owner}/{repo}/actions/runs/{run_id}/deployment_protection_rule
https://docs.github.com/rest/actions/workflow-runs#review-custom-deployment-protection-rules-for-a-workflow-run
- actions.forceCancelWorkflowRun — Force cancel a workflow run
POST /repos/{owner}/{repo}/actions/runs/{run_id}/force-cancel
https://docs.github.com/rest/actions/workflow-runs#force-cancel-a-workflow-run
- actions.listJobsForWorkflowRun — Listar execuções de fluxos de trabalho
GET /repos/{owner}/{repo}/actions/runs/{run_id}/jobs
https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run
- actions.downloadWorkflowRunLogs — Baixar execução de fluxo de trabalho
GET /repos/{owner}/{repo}/actions/runs/{run_id}/logs
https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-logs
- actions.deleteWorkflowRunLogs — Excluir execução de fluxo de trabalho
DELETE /repos/{owner}/{repo}/actions/runs/{run_id}/logs
https://docs.github.com/rest/actions/workflow-runs#delete-workflow-run-logs
- actions.getPendingDeploymentsForRun — Consultar execução de fluxo de trabalho
GET /repos/{owner}/{repo}/actions/runs/{run_id}/pending_deployments
https://docs.github.com/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run
- actions.reviewPendingDeploymentsForRun — Review pending deployments for a workflow run
POST /repos/{owner}/{repo}/actions/runs/{run_id}/pending_deployments
https://docs.github.com/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run
- actions.reRunWorkflow — Re-run a workflow
POST /repos/{owner}/{repo}/actions/runs/{run_id}/rerun
https://docs.github.com/rest/actions/workflow-runs#re-run-a-workflow
- actions.reRunWorkflowFailedJobs — Re-run failed jobs from a workflow run
POST /repos/{owner}/{repo}/actions/runs/{run_id}/rerun-failed-jobs
https://docs.github.com/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run
- actions.getWorkflowRunUsage — Consultar execução de fluxo de trabalho
GET /repos/{owner}/{repo}/actions/runs/{run_id}/timing
https://docs.github.com/rest/actions/workflow-runs#get-workflow-run-usage
- actions.listRepoSecrets — Listar segredos no repositório
GET /repos/{owner}/{repo}/actions/secrets
https://docs.github.com/rest/actions/secrets#list-repository-secrets
- actions.getRepoPublicKey — Consultar chave pública no repositório
GET /repos/{owner}/{repo}/actions/secrets/public-key
https://docs.github.com/rest/actions/secrets#get-a-repository-public-key
- actions.getRepoSecret — Consultar segredo no repositório
GET /repos/{owner}/{repo}/actions/secrets/{secret_name}
https://docs.github.com/rest/actions/secrets#get-a-repository-secret
- actions.createOrUpdateRepoSecret — Criar segredo no repositório
PUT /repos/{owner}/{repo}/actions/secrets/{secret_name}
https://docs.github.com/rest/actions/secrets#create-or-update-a-repository-secret
- actions.deleteRepoSecret — Excluir segredo no repositório
DELETE /repos/{owner}/{repo}/actions/secrets/{secret_name}
https://docs.github.com/rest/actions/secrets#delete-a-repository-secret
- actions.listRepoVariables — Listar repositórios de código
GET /repos/{owner}/{repo}/actions/variables
https://docs.github.com/rest/actions/variables#list-repository-variables
- actions.createRepoVariable — Criar repositório de código
POST /repos/{owner}/{repo}/actions/variables
https://docs.github.com/rest/actions/variables#create-a-repository-variable
- actions.getRepoVariable — Consultar repositório de código
GET /repos/{owner}/{repo}/actions/variables/{name}
https://docs.github.com/rest/actions/variables#get-a-repository-variable
- actions.deleteRepoVariable — Excluir repositório de código
DELETE /repos/{owner}/{repo}/actions/variables/{name}
https://docs.github.com/rest/actions/variables#delete-a-repository-variable
- actions.updateRepoVariable — Atualizar repositório de código
PATCH /repos/{owner}/{repo}/actions/variables/{name}
https://docs.github.com/rest/actions/variables#update-a-repository-variable
- actions.listRepoWorkflows — Listar fluxos de trabalho automatizados no repositório
GET /repos/{owner}/{repo}/actions/workflows
https://docs.github.com/rest/actions/workflows#list-repository-workflows
- actions.getWorkflow — Consultar fluxo de trabalho automatizado
GET /repos/{owner}/{repo}/actions/workflows/{workflow_id}
https://docs.github.com/rest/actions/workflows#get-a-workflow
- actions.disableWorkflow — Desativar fluxo de trabalho automatizado
PUT /repos/{owner}/{repo}/actions/workflows/{workflow_id}/disable
https://docs.github.com/rest/actions/workflows#disable-a-workflow
- actions.createWorkflowDispatch — Executar um workflow
POST /repos/{owner}/{repo}/actions/workflows/{workflow_id}/dispatches
https://docs.github.com/rest/actions/workflows#create-a-workflow-dispatch-event
- actions.enableWorkflow — Ativar fluxo de trabalho automatizado
PUT /repos/{owner}/{repo}/actions/workflows/{workflow_id}/enable
https://docs.github.com/rest/actions/workflows#enable-a-workflow
- actions.listWorkflowRuns — Listar execuções de fluxos de trabalho
GET /repos/{owner}/{repo}/actions/workflows/{workflow_id}/runs
https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow
- actions.getWorkflowUsage — Consultar fluxo de trabalho automatizado
GET /repos/{owner}/{repo}/actions/workflows/{workflow_id}/timing
https://docs.github.com/rest/actions/workflows#get-workflow-usage
- repos.listActivities — Listar repositórios de código
GET /repos/{owner}/{repo}/activity
https://docs.github.com/rest/repos/repos#list-repository-activities
- agents.listRepoOrganizationSecrets — Listar segredos da organização
GET /repos/{owner}/{repo}/agents/organization-secrets
https://docs.github.com/rest/agents/secrets#list-repository-organization-secrets
- agents.listRepoOrganizationVariables — Listar repositórios de código da organização
GET /repos/{owner}/{repo}/agents/organization-variables
https://docs.github.com/rest/agents/variables#list-repository-organization-variables
- agents.listRepoSecrets — Listar segredos no repositório
GET /repos/{owner}/{repo}/agents/secrets
https://docs.github.com/rest/agents/secrets#list-repository-secrets
- agents.getRepoPublicKey — Consultar chave pública no repositório
GET /repos/{owner}/{repo}/agents/secrets/public-key
https://docs.github.com/rest/agents/secrets#get-a-repository-public-key
- agents.getRepoSecret — Consultar segredo no repositório
GET /repos/{owner}/{repo}/agents/secrets/{secret_name}
https://docs.github.com/rest/agents/secrets#get-a-repository-secret
- agents.createOrUpdateRepoSecret — Criar segredo no repositório
PUT /repos/{owner}/{repo}/agents/secrets/{secret_name}
https://docs.github.com/rest/agents/secrets#create-or-update-a-repository-secret
- agents.deleteRepoSecret — Excluir segredo no repositório
DELETE /repos/{owner}/{repo}/agents/secrets/{secret_name}
https://docs.github.com/rest/agents/secrets#delete-a-repository-secret
- agents.listRepoVariables — Listar repositórios de código
GET /repos/{owner}/{repo}/agents/variables
https://docs.github.com/rest/agents/variables#list-repository-variables
- agents.createRepoVariable — Criar repositório de código
POST /repos/{owner}/{repo}/agents/variables
https://docs.github.com/rest/agents/variables#create-a-repository-variable
- agents.getRepoVariable — Consultar repositório de código
GET /repos/{owner}/{repo}/agents/variables/{name}
https://docs.github.com/rest/agents/variables#get-a-repository-variable
- agents.deleteRepoVariable — Excluir repositório de código
DELETE /repos/{owner}/{repo}/agents/variables/{name}
https://docs.github.com/rest/agents/variables#delete-a-repository-variable
- agents.updateRepoVariable — Atualizar repositório de código
PATCH /repos/{owner}/{repo}/agents/variables/{name}
https://docs.github.com/rest/agents/variables#update-a-repository-variable
- issues.listAssignees — List assignees
GET /repos/{owner}/{repo}/assignees
https://docs.github.com/rest/issues/assignees#list-assignees
- issues.checkUserCanBeAssigned — Verificar usuário
GET /repos/{owner}/{repo}/assignees/{assignee}
https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned
- repos.createAttestation — Create an attestation
POST /repos/{owner}/{repo}/attestations
https://docs.github.com/rest/repos/attestations#create-an-attestation
- repos.listAttestations — List attestations
GET /repos/{owner}/{repo}/attestations/{subject_digest}
https://docs.github.com/rest/repos/attestations#list-attestations
- repos.listAutolinks — Listar referências automáticas de links no repositório
GET /repos/{owner}/{repo}/autolinks
https://docs.github.com/rest/repos/autolinks#get-all-autolinks-of-a-repository
- repos.createAutolink — Criar referência automática de link no repositório
POST /repos/{owner}/{repo}/autolinks
https://docs.github.com/rest/repos/autolinks#create-an-autolink-reference-for-a-repository
- repos.getAutolink — Consultar referência automática de link no repositório
GET /repos/{owner}/{repo}/autolinks/{autolink_id}
https://docs.github.com/rest/repos/autolinks#get-an-autolink-reference-of-a-repository
- repos.deleteAutolink — Excluir referência automática de link no repositório
DELETE /repos/{owner}/{repo}/autolinks/{autolink_id}
https://docs.github.com/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository
- repos.checkAutomatedSecurityFixes — Verificar repositório de código
GET /repos/{owner}/{repo}/automated-security-fixes
https://docs.github.com/rest/repos/repos#check-if-dependabot-security-updates-are-enabled-for-a-repository
- repos.enableAutomatedSecurityFixes — Enable Dependabot security updates
PUT /repos/{owner}/{repo}/automated-security-fixes
https://docs.github.com/rest/repos/repos#enable-dependabot-security-updates
- repos.disableAutomatedSecurityFixes — Disable Dependabot security updates
DELETE /repos/{owner}/{repo}/automated-security-fixes
https://docs.github.com/rest/repos/repos#disable-dependabot-security-updates
- repos.listBranches — Listar branches de código
GET /repos/{owner}/{repo}/branches
https://docs.github.com/rest/branches/branches#list-branches
- repos.getBranch — Consultar branch de código
GET /repos/{owner}/{repo}/branches/{branch}
https://docs.github.com/rest/branches/branches#get-a-branch
- repos.getBranchProtection — Consultar proteção de branch
GET /repos/{owner}/{repo}/branches/{branch}/protection
https://docs.github.com/rest/branches/branch-protection#get-branch-protection
- repos.updateBranchProtection — Atualizar proteção de branch
PUT /repos/{owner}/{repo}/branches/{branch}/protection
https://docs.github.com/rest/branches/branch-protection#update-branch-protection
- repos.deleteBranchProtection — Excluir proteção de branch
DELETE /repos/{owner}/{repo}/branches/{branch}/protection
https://docs.github.com/rest/branches/branch-protection#delete-branch-protection
- repos.getAdminBranchProtection — Consultar proteção de branch para administradores
GET /repos/{owner}/{repo}/branches/{branch}/protection/enforce_admins
https://docs.github.com/rest/branches/branch-protection#get-admin-branch-protection
- repos.setAdminBranchProtection — Definir proteção de branch para administradores
POST /repos/{owner}/{repo}/branches/{branch}/protection/enforce_admins
https://docs.github.com/rest/branches/branch-protection#set-admin-branch-protection
- repos.deleteAdminBranchProtection — Excluir proteção de branch para administradores
DELETE /repos/{owner}/{repo}/branches/{branch}/protection/enforce_admins
https://docs.github.com/rest/branches/branch-protection#delete-admin-branch-protection
- repos.getPullRequestReviewProtection — Consultar requisito de revisão de código
GET /repos/{owner}/{repo}/branches/{branch}/protection/required_pull_request_reviews
https://docs.github.com/rest/branches/branch-protection#get-pull-request-review-protection
- repos.deletePullRequestReviewProtection — Excluir requisito de revisão de código
DELETE /repos/{owner}/{repo}/branches/{branch}/protection/required_pull_request_reviews
https://docs.github.com/rest/branches/branch-protection#delete-pull-request-review-protection
- repos.updatePullRequestReviewProtection — Atualizar requisito de revisão de código
PATCH /repos/{owner}/{repo}/branches/{branch}/protection/required_pull_request_reviews
https://docs.github.com/rest/branches/branch-protection#update-pull-request-review-protection
- repos.getCommitSignatureProtection — Consultar requisito de commits assinados
GET /repos/{owner}/{repo}/branches/{branch}/protection/required_signatures
https://docs.github.com/rest/branches/branch-protection#get-commit-signature-protection
- repos.createCommitSignatureProtection — Criar requisito de commits assinados
POST /repos/{owner}/{repo}/branches/{branch}/protection/required_signatures
https://docs.github.com/rest/branches/branch-protection#create-commit-signature-protection
- repos.deleteCommitSignatureProtection — Excluir requisito de commits assinados
DELETE /repos/{owner}/{repo}/branches/{branch}/protection/required_signatures
https://docs.github.com/rest/branches/branch-protection#delete-commit-signature-protection
- repos.getStatusChecksProtection — Get status checks protection
GET /repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks
https://docs.github.com/rest/branches/branch-protection#get-status-checks-protection
- repos.removeStatusCheckProtection — Remove status check protection
DELETE /repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks
https://docs.github.com/rest/branches/branch-protection#remove-status-check-protection
- repos.updateStatusCheckProtection — Update status check protection
PATCH /repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks
https://docs.github.com/rest/branches/branch-protection#update-status-check-protection
- repos.getAllStatusCheckContexts — Get all status check contexts
GET /repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks/contexts
https://docs.github.com/rest/branches/branch-protection#get-all-status-check-contexts
- repos.setStatusCheckContexts — Set status check contexts
PUT /repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks/contexts
https://docs.github.com/rest/branches/branch-protection#set-status-check-contexts
- repos.addStatusCheckContexts — Add status check contexts
POST /repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks/contexts
https://docs.github.com/rest/branches/branch-protection#add-status-check-contexts
- repos.removeStatusCheckContexts — Remove status check contexts
DELETE /repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks/contexts
https://docs.github.com/rest/branches/branch-protection#remove-status-check-contexts
- repos.getAccessRestrictions — Consultar restrição de acesso
GET /repos/{owner}/{repo}/branches/{branch}/protection/restrictions
https://docs.github.com/rest/branches/branch-protection#get-access-restrictions
- repos.deleteAccessRestrictions — Excluir restrição de acesso
DELETE /repos/{owner}/{repo}/branches/{branch}/protection/restrictions
https://docs.github.com/rest/branches/branch-protection#delete-access-restrictions
- repos.getAppsWithAccessToProtectedBranch — Consultar regra de acesso
GET /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/apps
https://docs.github.com/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch
- repos.setAppAccessRestrictions — Definir restrição de acesso
PUT /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/apps
https://docs.github.com/rest/branches/branch-protection#set-app-access-restrictions
- repos.addAppAccessRestrictions — Adicionar restrição de acesso
POST /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/apps
https://docs.github.com/rest/branches/branch-protection#add-app-access-restrictions
- repos.removeAppAccessRestrictions — Remover restrição de acesso
DELETE /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/apps
https://docs.github.com/rest/branches/branch-protection#remove-app-access-restrictions
- repos.getTeamsWithAccessToProtectedBranch — Consultar regra de acesso
GET /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/teams
https://docs.github.com/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch
- repos.setTeamAccessRestrictions — Definir restrição de acesso
PUT /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/teams
https://docs.github.com/rest/branches/branch-protection#set-team-access-restrictions
- repos.addTeamAccessRestrictions — Adicionar restrição de acesso
POST /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/teams
https://docs.github.com/rest/branches/branch-protection#add-team-access-restrictions
- repos.removeTeamAccessRestrictions — Remover restrição de acesso
DELETE /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/teams
https://docs.github.com/rest/branches/branch-protection#remove-team-access-restrictions
- repos.getUsersWithAccessToProtectedBranch — Consultar regra de acesso
GET /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/users
https://docs.github.com/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch
- repos.setUserAccessRestrictions — Definir restrição de acesso
PUT /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/users
https://docs.github.com/rest/branches/branch-protection#set-user-access-restrictions
- repos.addUserAccessRestrictions — Adicionar restrição de acesso
POST /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/users
https://docs.github.com/rest/branches/branch-protection#add-user-access-restrictions
- repos.removeUserAccessRestrictions — Remover restrição de acesso
DELETE /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/users
https://docs.github.com/rest/branches/branch-protection#remove-user-access-restrictions
- repos.renameBranch — Rename a branch
POST /repos/{owner}/{repo}/branches/{branch}/rename
https://docs.github.com/rest/branches/branches#rename-a-branch
- checks.create — Create a check run
POST /repos/{owner}/{repo}/check-runs
https://docs.github.com/rest/checks/runs#create-a-check-run
- checks.get — Get a check run
GET /repos/{owner}/{repo}/check-runs/{check_run_id}
https://docs.github.com/rest/checks/runs#get-a-check-run
- checks.update — Update a check run
PATCH /repos/{owner}/{repo}/check-runs/{check_run_id}
https://docs.github.com/rest/checks/runs#update-a-check-run
- checks.listAnnotations — List check run annotations
GET /repos/{owner}/{repo}/check-runs/{check_run_id}/annotations
https://docs.github.com/rest/checks/runs#list-check-run-annotations
- checks.rerequestRun — Rerequest a check run
POST /repos/{owner}/{repo}/check-runs/{check_run_id}/rerequest
https://docs.github.com/rest/checks/runs#rerequest-a-check-run
- checks.createSuite — Create a check suite
POST /repos/{owner}/{repo}/check-suites
https://docs.github.com/rest/checks/suites#create-a-check-suite
- checks.setSuitesPreferences — Atualizar repositório de código
PATCH /repos/{owner}/{repo}/check-suites/preferences
https://docs.github.com/rest/checks/suites#update-repository-preferences-for-check-suites
- checks.getSuite — Get a check suite
GET /repos/{owner}/{repo}/check-suites/{check_suite_id}
https://docs.github.com/rest/checks/suites#get-a-check-suite
- checks.listForSuite — List check runs in a check suite
GET /repos/{owner}/{repo}/check-suites/{check_suite_id}/check-runs
https://docs.github.com/rest/checks/runs#list-check-runs-in-a-check-suite
- checks.rerequestSuite — Rerequest a check suite
POST /repos/{owner}/{repo}/check-suites/{check_suite_id}/rerequest
https://docs.github.com/rest/checks/suites#rerequest-a-check-suite
- codeQuality.listFindingsForRepo — Listar repositórios de código
GET /repos/{owner}/{repo}/code-quality/findings
https://docs.github.com/rest/code-quality/code-quality#list-code-quality-findings-for-a-repository
- codeQuality.getFinding — Get a code quality finding
GET /repos/{owner}/{repo}/code-quality/findings/{finding_number}
https://docs.github.com/rest/code-quality/code-quality#get-a-code-quality-finding
- codeQuality.getSetup — Consultar configuração
GET /repos/{owner}/{repo}/code-quality/setup
https://docs.github.com/rest/code-quality/code-quality#get-a-code-quality-setup-configuration
- codeQuality.updateSetup — Atualizar configuração
PATCH /repos/{owner}/{repo}/code-quality/setup
https://docs.github.com/rest/code-quality/code-quality#update-a-code-quality-setup-configuration
- codeScanning.listAlertsForRepo — Listar alertas no repositório
GET /repos/{owner}/{repo}/code-scanning/alerts
https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository
- codeScanning.getAlert — Consultar alerta
GET /repos/{owner}/{repo}/code-scanning/alerts/{alert_number}
https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-alert
- codeScanning.updateAlert — Atualizar alerta
PATCH /repos/{owner}/{repo}/code-scanning/alerts/{alert_number}
https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-alert
- codeScanning.getAutofix — Consultar alerta
GET /repos/{owner}/{repo}/code-scanning/alerts/{alert_number}/autofix
https://docs.github.com/rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert
- codeScanning.createAutofix — Criar alerta
POST /repos/{owner}/{repo}/code-scanning/alerts/{alert_number}/autofix
https://docs.github.com/rest/code-scanning/code-scanning#create-an-autofix-for-a-code-scanning-alert
- codeScanning.commitAutofix — Commit an autofix for a code scanning alert
POST /repos/{owner}/{repo}/code-scanning/alerts/{alert_number}/autofix/commits
https://docs.github.com/rest/code-scanning/code-scanning#commit-an-autofix-for-a-code-scanning-alert
- codeScanning.listAlertInstances — Listar alertas
GET /repos/{owner}/{repo}/code-scanning/alerts/{alert_number}/instances
https://docs.github.com/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert
- codeScanning.listRecentAnalyses — Listar repositórios de código
GET /repos/{owner}/{repo}/code-scanning/analyses
https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository
- codeScanning.getAnalysis — Consultar repositório de código
GET /repos/{owner}/{repo}/code-scanning/analyses/{analysis_id}
https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-analysis-for-a-repository
- codeScanning.deleteAnalysis — Excluir repositório de código
DELETE /repos/{owner}/{repo}/code-scanning/analyses/{analysis_id}
https://docs.github.com/rest/code-scanning/code-scanning#delete-a-code-scanning-analysis-from-a-repository
- codeScanning.listCodeqlDatabases — Listar repositórios de código
GET /repos/{owner}/{repo}/code-scanning/codeql/databases
https://docs.github.com/rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository
- codeScanning.getCodeqlDatabase — Consultar repositório de código
GET /repos/{owner}/{repo}/code-scanning/codeql/databases/{language}
https://docs.github.com/rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository
- codeScanning.deleteCodeqlDatabase — Delete a CodeQL database
DELETE /repos/{owner}/{repo}/code-scanning/codeql/databases/{language}
https://docs.github.com/rest/code-scanning/code-scanning#delete-a-codeql-database
- codeScanning.createVariantAnalysis — Create a CodeQL variant analysis
POST /repos/{owner}/{repo}/code-scanning/codeql/variant-analyses
https://docs.github.com/rest/code-scanning/code-scanning#create-a-codeql-variant-analysis
- codeScanning.getVariantAnalysis — Get the summary of a CodeQL variant analysis
GET /repos/{owner}/{repo}/code-scanning/codeql/variant-analyses/{codeql_variant_analysis_id}
https://docs.github.com/rest/code-scanning/code-scanning#get-the-summary-of-a-codeql-variant-analysis
- codeScanning.getVariantAnalysisRepoTask — Consultar repositório de código
GET /repos/{owner}/{repo}/code-scanning/codeql/variant-analyses/{codeql_variant_analysis_id}/repos/{repo_owner}/{repo_name}
https://docs.github.com/rest/code-scanning/code-scanning#get-the-analysis-status-of-a-repository-in-a-codeql-variant-analysis
- codeScanning.getDefaultSetup — Consultar configuração
GET /repos/{owner}/{repo}/code-scanning/default-setup
https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration
- codeScanning.updateDefaultSetup — Atualizar configuração
PATCH /repos/{owner}/{repo}/code-scanning/default-setup
https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration
- codeScanning.uploadSarif — Upload an analysis as SARIF data
POST /repos/{owner}/{repo}/code-scanning/sarifs
https://docs.github.com/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data
- codeScanning.getSarif — Get information about a SARIF upload
GET /repos/{owner}/{repo}/code-scanning/sarifs/{sarif_id}
https://docs.github.com/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload
- codeSecurity.getConfigurationForRepository — Consultar repositório de código
GET /repos/{owner}/{repo}/code-security-configuration
https://docs.github.com/rest/code-security/configurations#get-the-code-security-configuration-associated-with-a-repository
- repos.codeownersErrors — List CODEOWNERS errors
GET /repos/{owner}/{repo}/codeowners/errors
https://docs.github.com/rest/repos/repos#list-codeowners-errors
- codespaces.listInRepositoryForAuthenticatedUser — Listar repositórios de código do usuário conectado
GET /repos/{owner}/{repo}/codespaces
https://docs.github.com/rest/codespaces/codespaces#list-codespaces-in-a-repository-for-the-authenticated-user
- codespaces.createWithRepoForAuthenticatedUser — Criar repositório de código
POST /repos/{owner}/{repo}/codespaces
https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-in-a-repository
- codespaces.listDevcontainersInRepositoryForAuthenticatedUser — Listar repositórios de código do usuário conectado
GET /repos/{owner}/{repo}/codespaces/devcontainers
https://docs.github.com/rest/codespaces/codespaces#list-devcontainer-configurations-in-a-repository-for-the-authenticated-user
- codespaces.repoMachinesForAuthenticatedUser — Listar repositórios de código
GET /repos/{owner}/{repo}/codespaces/machines
https://docs.github.com/rest/codespaces/machines#list-available-machine-types-for-a-repository
- codespaces.preFlightWithRepoForAuthenticatedUser — Get default attributes for a codespace
GET /repos/{owner}/{repo}/codespaces/new
https://docs.github.com/rest/codespaces/codespaces#get-default-attributes-for-a-codespace
- codespaces.checkPermissionsForDevcontainer — Verificar regra de acesso do usuário conectado
GET /repos/{owner}/{repo}/codespaces/permissions_check
https://docs.github.com/rest/codespaces/codespaces#check-if-permissions-defined-by-a-devcontainer-have-been-accepted-by-the-authenticated-user
- codespaces.listRepoSecrets — Listar segredos no repositório
GET /repos/{owner}/{repo}/codespaces/secrets
https://docs.github.com/rest/codespaces/repository-secrets#list-repository-secrets
- codespaces.getRepoPublicKey — Consultar chave pública no repositório
GET /repos/{owner}/{repo}/codespaces/secrets/public-key
https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-public-key
- codespaces.getRepoSecret — Consultar segredo no repositório
GET /repos/{owner}/{repo}/codespaces/secrets/{secret_name}
https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-secret
- codespaces.createOrUpdateRepoSecret — Criar segredo no repositório
PUT /repos/{owner}/{repo}/codespaces/secrets/{secret_name}
https://docs.github.com/rest/codespaces/repository-secrets#create-or-update-a-repository-secret
- codespaces.deleteRepoSecret — Excluir segredo no repositório
DELETE /repos/{owner}/{repo}/codespaces/secrets/{secret_name}
https://docs.github.com/rest/codespaces/repository-secrets#delete-a-repository-secret
- repos.listCollaborators — Listar colaboradores no repositório
GET /repos/{owner}/{repo}/collaborators
https://docs.github.com/rest/collaborators/collaborators#list-repository-collaborators
- repos.checkCollaborator — Verificar colaborador no repositório
GET /repos/{owner}/{repo}/collaborators/{username}
https://docs.github.com/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator
- repos.addCollaborator — Dar acesso ao repositório
PUT /repos/{owner}/{repo}/collaborators/{username}
https://docs.github.com/rest/collaborators/collaborators#add-a-repository-collaborator
- repos.removeCollaborator — Remover colaborador no repositório
DELETE /repos/{owner}/{repo}/collaborators/{username}
https://docs.github.com/rest/collaborators/collaborators#remove-a-repository-collaborator
- repos.getCollaboratorPermissionLevel — Consultar regra de acesso no repositório
GET /repos/{owner}/{repo}/collaborators/{username}/permission
https://docs.github.com/rest/collaborators/collaborators#get-repository-permissions-for-a-user
- repos.listCommitCommentsForRepo — Listar comentários no repositório
GET /repos/{owner}/{repo}/comments
https://docs.github.com/rest/commits/comments#list-commit-comments-for-a-repository
- repos.getCommitComment — Consultar comentário
GET /repos/{owner}/{repo}/comments/{comment_id}
https://docs.github.com/rest/commits/comments#get-a-commit-comment
- repos.deleteCommitComment — Excluir comentário
DELETE /repos/{owner}/{repo}/comments/{comment_id}
https://docs.github.com/rest/commits/comments#delete-a-commit-comment
- repos.updateCommitComment — Atualizar comentário
PATCH /repos/{owner}/{repo}/comments/{comment_id}
https://docs.github.com/rest/commits/comments#update-a-commit-comment
- reactions.listForCommitComment — Listar comentários
GET /repos/{owner}/{repo}/comments/{comment_id}/reactions
https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-commit-comment
- reactions.createForCommitComment — Criar comentário
POST /repos/{owner}/{repo}/comments/{comment_id}/reactions
https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-commit-comment
- reactions.deleteForCommitComment — Excluir comentário
DELETE /repos/{owner}/{repo}/comments/{comment_id}/reactions/{reaction_id}
https://docs.github.com/rest/reactions/reactions#delete-a-commit-comment-reaction
- repos.listCommits — Listar alterações de código (commits)
GET /repos/{owner}/{repo}/commits
https://docs.github.com/rest/commits/commits#list-commits
- repos.listBranchesForHeadCommit — Listar branches de código
GET /repos/{owner}/{repo}/commits/{commit_sha}/branches-where-head
https://docs.github.com/rest/commits/commits#list-branches-for-head-commit
- repos.listCommentsForCommit — Listar comentários
GET /repos/{owner}/{repo}/commits/{commit_sha}/comments
https://docs.github.com/rest/commits/comments#list-commit-comments
- repos.createCommitComment — Criar comentário
POST /repos/{owner}/{repo}/commits/{commit_sha}/comments
https://docs.github.com/rest/commits/comments#create-a-commit-comment
- repos.listPullRequestsAssociatedWithCommit — Listar solicitações de alteração de código (pull requests)
GET /repos/{owner}/{repo}/commits/{commit_sha}/pulls
https://docs.github.com/rest/commits/commits#list-pull-requests-associated-with-a-commit
- repos.getCommit — Consultar alteração de código (commit)
GET /repos/{owner}/{repo}/commits/{ref}
https://docs.github.com/rest/commits/commits#get-a-commit
- checks.listForRef — List check runs for a Git reference
GET /repos/{owner}/{repo}/commits/{ref}/check-runs
https://docs.github.com/rest/checks/runs#list-check-runs-for-a-git-reference
- checks.listSuitesForRef — List check suites for a Git reference
GET /repos/{owner}/{repo}/commits/{ref}/check-suites
https://docs.github.com/rest/checks/suites#list-check-suites-for-a-git-reference
- repos.getCombinedStatusForRef — Get the combined status for a specific reference
GET /repos/{owner}/{repo}/commits/{ref}/status
https://docs.github.com/rest/commits/statuses#get-the-combined-status-for-a-specific-reference
- repos.listCommitStatusesForRef — Listar alterações de código (commits)
GET /repos/{owner}/{repo}/commits/{ref}/statuses
https://docs.github.com/rest/commits/statuses#list-commit-statuses-for-a-reference
- repos.getCommunityProfileMetrics — Consultar arquivo
GET /repos/{owner}/{repo}/community/profile
https://docs.github.com/rest/metrics/community#get-community-profile-metrics
- repos.compareCommits — Compare two commits
GET /repos/{owner}/{repo}/compare/{basehead}
https://docs.github.com/rest/commits/commits#compare-two-commits
- repos.getContent — Ler arquivos e pastas
GET /repos/{owner}/{repo}/contents/{path}
https://docs.github.com/rest/repos/contents#get-repository-content
- repos.createOrUpdateFileContents — Criar ou editar um arquivo
PUT /repos/{owner}/{repo}/contents/{path}
https://docs.github.com/rest/repos/contents#create-or-update-file-contents
- repos.deleteFile — Excluir arquivo
DELETE /repos/{owner}/{repo}/contents/{path}
https://docs.github.com/rest/repos/contents#delete-a-file
- repos.listContributors — Listar repositórios de código
GET /repos/{owner}/{repo}/contributors
https://docs.github.com/rest/repos/repos#list-repository-contributors
- copilot.getCopilotCloudAgentConfiguration — Consultar repositório de código
GET /repos/{owner}/{repo}/copilot/cloud-agent/configuration
https://docs.github.com/rest/copilot/copilot-cloud-agent-management#get-copilot-cloud-agent-configuration-for-a-repository
- dependabot.listAlertsForRepo — Listar alertas no repositório
GET /repos/{owner}/{repo}/dependabot/alerts
https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository
- dependabot.getAlert — Consultar alerta
GET /repos/{owner}/{repo}/dependabot/alerts/{alert_number}
https://docs.github.com/rest/dependabot/alerts#get-a-dependabot-alert
- dependabot.updateAlert — Atualizar alerta
PATCH /repos/{owner}/{repo}/dependabot/alerts/{alert_number}
https://docs.github.com/rest/dependabot/alerts#update-a-dependabot-alert
- dependabot.listRepoSecrets — Listar segredos no repositório
GET /repos/{owner}/{repo}/dependabot/secrets
https://docs.github.com/rest/dependabot/secrets#list-repository-secrets
- dependabot.getRepoPublicKey — Consultar chave pública no repositório
GET /repos/{owner}/{repo}/dependabot/secrets/public-key
https://docs.github.com/rest/dependabot/secrets#get-a-repository-public-key
- dependabot.getRepoSecret — Consultar segredo no repositório
GET /repos/{owner}/{repo}/dependabot/secrets/{secret_name}
https://docs.github.com/rest/dependabot/secrets#get-a-repository-secret
- dependabot.createOrUpdateRepoSecret — Criar segredo no repositório
PUT /repos/{owner}/{repo}/dependabot/secrets/{secret_name}
https://docs.github.com/rest/dependabot/secrets#create-or-update-a-repository-secret
- dependabot.deleteRepoSecret — Excluir segredo no repositório
DELETE /repos/{owner}/{repo}/dependabot/secrets/{secret_name}
https://docs.github.com/rest/dependabot/secrets#delete-a-repository-secret
- dependencyGraph.diffRange — Consultar alteração de código (commit)
GET /repos/{owner}/{repo}/dependency-graph/compare/{basehead}
https://docs.github.com/rest/dependency-graph/dependency-review#get-a-diff-of-the-dependencies-between-commits
- dependencyGraph.exportSbom — Exportar repositório de código
GET /repos/{owner}/{repo}/dependency-graph/sbom
https://docs.github.com/rest/dependency-graph/sboms#export-a-software-bill-of-materials-sbom-for-a-repository
- dependencyGraph.fetchSbomReport — Obter repositório de código
GET /repos/{owner}/{repo}/dependency-graph/sbom/fetch-report/{sbom_uuid}
https://docs.github.com/rest/dependency-graph/sboms#fetch-a-software-bill-of-materials-sbom-for-a-repository
- dependencyGraph.generateSbomReport — Request generation of a software bill of materials (SBOM) for a repository.
GET /repos/{owner}/{repo}/dependency-graph/sbom/generate-report
https://docs.github.com/rest/dependency-graph/sboms#request-generation-of-a-software-bill-of-materials-sbom-for-a-repository
- dependencyGraph.createRepositorySnapshot — Criar repositório de código
POST /repos/{owner}/{repo}/dependency-graph/snapshots
https://docs.github.com/rest/dependency-graph/dependency-submission#create-a-snapshot-of-dependencies-for-a-repository
- repos.listDeployments — Listar implantações
GET /repos/{owner}/{repo}/deployments
https://docs.github.com/rest/deployments/deployments#list-deployments
- repos.createDeployment — Criar implantação
POST /repos/{owner}/{repo}/deployments
https://docs.github.com/rest/deployments/deployments#create-a-deployment
- repos.getDeployment — Consultar implantação
GET /repos/{owner}/{repo}/deployments/{deployment_id}
https://docs.github.com/rest/deployments/deployments#get-a-deployment
- repos.deleteDeployment — Excluir implantação
DELETE /repos/{owner}/{repo}/deployments/{deployment_id}
https://docs.github.com/rest/deployments/deployments#delete-a-deployment
- repos.listDeploymentStatuses — Listar implantações
GET /repos/{owner}/{repo}/deployments/{deployment_id}/statuses
https://docs.github.com/rest/deployments/statuses#list-deployment-statuses
- repos.createDeploymentStatus — Criar implantação
POST /repos/{owner}/{repo}/deployments/{deployment_id}/statuses
https://docs.github.com/rest/deployments/statuses#create-a-deployment-status
- repos.getDeploymentStatus — Consultar implantação
GET /repos/{owner}/{repo}/deployments/{deployment_id}/statuses/{status_id}
https://docs.github.com/rest/deployments/statuses#get-a-deployment-status
- repos.createDispatchEvent — Criar evento no repositório
POST /repos/{owner}/{repo}/dispatches
https://docs.github.com/rest/repos/repos#create-a-repository-dispatch-event
- repos.getAllEnvironments — List environments
GET /repos/{owner}/{repo}/environments
https://docs.github.com/rest/deployments/environments#list-environments
- repos.getEnvironment — Get an environment
GET /repos/{owner}/{repo}/environments/{environment_name}
https://docs.github.com/rest/deployments/environments#get-an-environment
- repos.createOrUpdateEnvironment — Create or update an environment
PUT /repos/{owner}/{repo}/environments/{environment_name}
https://docs.github.com/rest/deployments/environments#create-or-update-an-environment
- repos.deleteAnEnvironment — Delete an environment
DELETE /repos/{owner}/{repo}/environments/{environment_name}
https://docs.github.com/rest/deployments/environments#delete-an-environment
- repos.listDeploymentBranchPolicies — Listar branches de código
GET /repos/{owner}/{repo}/environments/{environment_name}/deployment-branch-policies
https://docs.github.com/rest/deployments/branch-policies#list-deployment-branch-policies
- repos.createDeploymentBranchPolicy — Criar branch de código
POST /repos/{owner}/{repo}/environments/{environment_name}/deployment-branch-policies
https://docs.github.com/rest/deployments/branch-policies#create-a-deployment-branch-policy
- repos.getDeploymentBranchPolicy — Consultar branch de código
GET /repos/{owner}/{repo}/environments/{environment_name}/deployment-branch-policies/{branch_policy_id}
https://docs.github.com/rest/deployments/branch-policies#get-a-deployment-branch-policy
- repos.updateDeploymentBranchPolicy — Atualizar branch de código
PUT /repos/{owner}/{repo}/environments/{environment_name}/deployment-branch-policies/{branch_policy_id}
https://docs.github.com/rest/deployments/branch-policies#update-a-deployment-branch-policy
- repos.deleteDeploymentBranchPolicy — Excluir branch de código
DELETE /repos/{owner}/{repo}/environments/{environment_name}/deployment-branch-policies/{branch_policy_id}
https://docs.github.com/rest/deployments/branch-policies#delete-a-deployment-branch-policy
- repos.getAllDeploymentProtectionRules — Listar implantações
GET /repos/{owner}/{repo}/environments/{environment_name}/deployment_protection_rules
https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment
- repos.createDeploymentProtectionRule — Criar implantação
POST /repos/{owner}/{repo}/environments/{environment_name}/deployment_protection_rules
https://docs.github.com/rest/deployments/protection-rules#create-a-custom-deployment-protection-rule-on-an-environment
- repos.listCustomDeploymentRuleIntegrations — Listar implantações
GET /repos/{owner}/{repo}/environments/{environment_name}/deployment_protection_rules/apps
https://docs.github.com/rest/deployments/protection-rules#list-custom-deployment-rule-integrations-available-for-an-environment
- repos.getCustomDeploymentProtectionRule — Consultar implantação
GET /repos/{owner}/{repo}/environments/{environment_name}/deployment_protection_rules/{protection_rule_id}
https://docs.github.com/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule
- repos.disableDeploymentProtectionRule — Disable a custom protection rule for an environment
DELETE /repos/{owner}/{repo}/environments/{environment_name}/deployment_protection_rules/{protection_rule_id}
https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment
- actions.listEnvironmentSecrets — Listar segredos
GET /repos/{owner}/{repo}/environments/{environment_name}/secrets
https://docs.github.com/rest/actions/secrets#list-environment-secrets
- actions.getEnvironmentPublicKey — Consultar chave pública
GET /repos/{owner}/{repo}/environments/{environment_name}/secrets/public-key
https://docs.github.com/rest/actions/secrets#get-an-environment-public-key
- actions.getEnvironmentSecret — Consultar segredo
GET /repos/{owner}/{repo}/environments/{environment_name}/secrets/{secret_name}
https://docs.github.com/rest/actions/secrets#get-an-environment-secret
- actions.createOrUpdateEnvironmentSecret — Criar segredo
PUT /repos/{owner}/{repo}/environments/{environment_name}/secrets/{secret_name}
https://docs.github.com/rest/actions/secrets#create-or-update-an-environment-secret
- actions.deleteEnvironmentSecret — Excluir segredo
DELETE /repos/{owner}/{repo}/environments/{environment_name}/secrets/{secret_name}
https://docs.github.com/rest/actions/secrets#delete-an-environment-secret
- actions.listEnvironmentVariables — List environment variables
GET /repos/{owner}/{repo}/environments/{environment_name}/variables
https://docs.github.com/rest/actions/variables#list-environment-variables
- actions.createEnvironmentVariable — Create an environment variable
POST /repos/{owner}/{repo}/environments/{environment_name}/variables
https://docs.github.com/rest/actions/variables#create-an-environment-variable
- actions.getEnvironmentVariable — Get an environment variable
GET /repos/{owner}/{repo}/environments/{environment_name}/variables/{name}
https://docs.github.com/rest/actions/variables#get-an-environment-variable
- actions.deleteEnvironmentVariable — Delete an environment variable
DELETE /repos/{owner}/{repo}/environments/{environment_name}/variables/{name}
https://docs.github.com/rest/actions/variables#delete-an-environment-variable
- actions.updateEnvironmentVariable — Update an environment variable
PATCH /repos/{owner}/{repo}/environments/{environment_name}/variables/{name}
https://docs.github.com/rest/actions/variables#update-an-environment-variable
- activity.listRepoEvents — Listar eventos no repositório
GET /repos/{owner}/{repo}/events
https://docs.github.com/rest/activity/events#list-repository-events
- repos.listForks — List forks
GET /repos/{owner}/{repo}/forks
https://docs.github.com/rest/repos/forks#list-forks
- repos.createFork — Create a fork
POST /repos/{owner}/{repo}/forks
https://docs.github.com/rest/repos/forks#create-a-fork
- git.createBlob — Create a blob
POST /repos/{owner}/{repo}/git/blobs
https://docs.github.com/rest/git/blobs#create-a-blob
- git.getBlob — Get a blob
GET /repos/{owner}/{repo}/git/blobs/{file_sha}
https://docs.github.com/rest/git/blobs#get-a-blob
- git.createCommit — Criar alteração de código (commit)
POST /repos/{owner}/{repo}/git/commits
https://docs.github.com/rest/git/commits#create-a-commit
- git.getCommit — Consultar alteração de código (commit)
GET /repos/{owner}/{repo}/git/commits/{commit_sha}
https://docs.github.com/rest/git/commits#get-a-commit-object
- git.listMatchingRefs — List matching references
GET /repos/{owner}/{repo}/git/matching-refs/{ref}
https://docs.github.com/rest/git/refs#list-matching-references
- git.getRef — Get a reference
GET /repos/{owner}/{repo}/git/ref/{ref}
https://docs.github.com/rest/git/refs#get-a-reference
- git.createRef — Create a reference
POST /repos/{owner}/{repo}/git/refs
https://docs.github.com/rest/git/refs#create-a-reference
- git.deleteRef — Delete a reference
DELETE /repos/{owner}/{repo}/git/refs/{ref}
https://docs.github.com/rest/git/refs#delete-a-reference
- git.updateRef — Update a reference
PATCH /repos/{owner}/{repo}/git/refs/{ref}
https://docs.github.com/rest/git/refs#update-a-reference
- git.createTag — Create a tag object
POST /repos/{owner}/{repo}/git/tags
https://docs.github.com/rest/git/tags#create-a-tag-object
- git.getTag — Get a tag
GET /repos/{owner}/{repo}/git/tags/{tag_sha}
https://docs.github.com/rest/git/tags#get-a-tag
- git.createTree — Create a tree
POST /repos/{owner}/{repo}/git/trees
https://docs.github.com/rest/git/trees#create-a-tree
- git.getTree — Get a tree
GET /repos/{owner}/{repo}/git/trees/{tree_sha}
https://docs.github.com/rest/git/trees#get-a-tree
- repos.getHashAlgorithm — Consultar repositório de código
GET /repos/{owner}/{repo}/hash-algorithm
https://docs.github.com/rest/repos/repos#get-the-hash-algorithm-for-a-repository
- repos.listWebhooks — Listar webhooks no repositório
GET /repos/{owner}/{repo}/hooks
https://docs.github.com/rest/repos/webhooks#list-repository-webhooks
- repos.createWebhook — Criar webhook no repositório
POST /repos/{owner}/{repo}/hooks
https://docs.github.com/rest/repos/webhooks#create-a-repository-webhook
- repos.getWebhook — Consultar webhook no repositório
GET /repos/{owner}/{repo}/hooks/{hook_id}
https://docs.github.com/rest/repos/webhooks#get-a-repository-webhook
- repos.deleteWebhook — Excluir webhook no repositório
DELETE /repos/{owner}/{repo}/hooks/{hook_id}
https://docs.github.com/rest/repos/webhooks#delete-a-repository-webhook
- repos.updateWebhook — Atualizar webhook no repositório
PATCH /repos/{owner}/{repo}/hooks/{hook_id}
https://docs.github.com/rest/repos/webhooks#update-a-repository-webhook
- repos.getWebhookConfigForRepo — Consultar webhook no repositório
GET /repos/{owner}/{repo}/hooks/{hook_id}/config
https://docs.github.com/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository
- repos.updateWebhookConfigForRepo — Atualizar webhook no repositório
PATCH /repos/{owner}/{repo}/hooks/{hook_id}/config
https://docs.github.com/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository
- repos.listWebhookDeliveries — Listar webhooks no repositório
GET /repos/{owner}/{repo}/hooks/{hook_id}/deliveries
https://docs.github.com/rest/repos/webhooks#list-deliveries-for-a-repository-webhook
- repos.getWebhookDelivery — Consultar webhook no repositório
GET /repos/{owner}/{repo}/hooks/{hook_id}/deliveries/{delivery_id}
https://docs.github.com/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook
- repos.redeliverWebhookDelivery — Redeliver a delivery for a repository webhook
POST /repos/{owner}/{repo}/hooks/{hook_id}/deliveries/{delivery_id}/attempts
https://docs.github.com/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook
- repos.pingWebhook — Ping a repository webhook
POST /repos/{owner}/{repo}/hooks/{hook_id}/pings
https://docs.github.com/rest/repos/webhooks#ping-a-repository-webhook
- repos.testPushWebhook — Test the push repository webhook
POST /repos/{owner}/{repo}/hooks/{hook_id}/tests
https://docs.github.com/rest/repos/webhooks#test-the-push-repository-webhook
- repos.checkImmutableReleases — Verificar versão no repositório
GET /repos/{owner}/{repo}/immutable-releases
https://docs.github.com/rest/repos/repos#check-if-immutable-releases-are-enabled-for-a-repository
- repos.enableImmutableReleases — Ativar versão
PUT /repos/{owner}/{repo}/immutable-releases
https://docs.github.com/rest/repos/repos#enable-immutable-releases
- repos.disableImmutableReleases — Desativar versão
DELETE /repos/{owner}/{repo}/immutable-releases
https://docs.github.com/rest/repos/repos#disable-immutable-releases
- migrations.getImportStatus — Get an import status
GET /repos/{owner}/{repo}/import
https://docs.github.com/rest/migrations/source-imports#get-an-import-status
- migrations.startImport — Start an import
PUT /repos/{owner}/{repo}/import
https://docs.github.com/rest/migrations/source-imports#start-an-import
- migrations.cancelImport — Cancel an import
DELETE /repos/{owner}/{repo}/import
https://docs.github.com/rest/migrations/source-imports#cancel-an-import
- migrations.updateImport — Update an import
PATCH /repos/{owner}/{repo}/import
https://docs.github.com/rest/migrations/source-imports#update-an-import
- migrations.getCommitAuthors — Consultar alteração de código (commit)
GET /repos/{owner}/{repo}/import/authors
https://docs.github.com/rest/migrations/source-imports#get-commit-authors
- migrations.mapCommitAuthor — Map a commit author
PATCH /repos/{owner}/{repo}/import/authors/{author_id}
https://docs.github.com/rest/migrations/source-imports#map-a-commit-author
- migrations.getLargeFiles — Consultar arquivo
GET /repos/{owner}/{repo}/import/large_files
https://docs.github.com/rest/migrations/source-imports#get-large-files
- migrations.setLfsPreference — Update Git LFS preference
PATCH /repos/{owner}/{repo}/import/lfs
https://docs.github.com/rest/migrations/source-imports#update-git-lfs-preference
- apps.getRepoInstallation — Consultar repositório de código
GET /repos/{owner}/{repo}/installation
https://docs.github.com/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app
- interactions.getRestrictionsForRepo — Consultar repositório de código
GET /repos/{owner}/{repo}/interaction-limits
https://docs.github.com/rest/interactions/repos#get-interaction-restrictions-for-a-repository
- interactions.setRestrictionsForRepo — Definir repositório de código
PUT /repos/{owner}/{repo}/interaction-limits
https://docs.github.com/rest/interactions/repos#set-interaction-restrictions-for-a-repository
- interactions.removeRestrictionsForRepo — Remover repositório de código
DELETE /repos/{owner}/{repo}/interaction-limits
https://docs.github.com/rest/interactions/repos#remove-interaction-restrictions-for-a-repository
- interactions.getPullRequestBypassListForRepo — Consultar solicitação de alteração de código (pull request) no repositório
GET /repos/{owner}/{repo}/interaction-limits/pulls/bypass-list
https://docs.github.com/rest/interactions/repos#get-pull-request-creation-cap-bypass-list-for-a-repository
- interactions.setPullRequestBypassListForRepo — Adicionar solicitação de alteração de código (pull request) no repositório
PUT /repos/{owner}/{repo}/interaction-limits/pulls/bypass-list
https://docs.github.com/rest/interactions/repos#add-users-to-the-pull-request-creation-cap-bypass-list-for-a-repository
- interactions.removePullRequestBypassListForRepo — Remover solicitação de alteração de código (pull request) no repositório
DELETE /repos/{owner}/{repo}/interaction-limits/pulls/bypass-list
https://docs.github.com/rest/interactions/repos#remove-users-from-the-pull-request-creation-cap-bypass-list-for-a-repository
- repos.listInvitations — Listar convites no repositório
GET /repos/{owner}/{repo}/invitations
https://docs.github.com/rest/collaborators/invitations#list-repository-invitations
- repos.deleteInvitation — Excluir convite no repositório
DELETE /repos/{owner}/{repo}/invitations/{invitation_id}
https://docs.github.com/rest/collaborators/invitations#delete-a-repository-invitation
- repos.updateInvitation — Atualizar convite no repositório
PATCH /repos/{owner}/{repo}/invitations/{invitation_id}
https://docs.github.com/rest/collaborators/invitations#update-a-repository-invitation
- repos.listIssueTypes — Listar tipos de chamados no repositório
GET /repos/{owner}/{repo}/issue-types
https://docs.github.com/rest/repos/issue-types#list-issue-types-for-a-repository
- issues.listForRepo — Listar chamados no repositório
GET /repos/{owner}/{repo}/issues
https://docs.github.com/rest/issues/issues#list-repository-issues
- issues.create — Criar uma issue
POST /repos/{owner}/{repo}/issues
https://docs.github.com/rest/issues/issues#create-an-issue
- issues.listCommentsForRepo — Listar comentários no repositório
GET /repos/{owner}/{repo}/issues/comments
https://docs.github.com/rest/issues/comments#list-issue-comments-for-a-repository
- issues.getComment — Consultar comentário
GET /repos/{owner}/{repo}/issues/comments/{comment_id}
https://docs.github.com/rest/issues/comments#get-an-issue-comment
- issues.deleteComment — Excluir comentário
DELETE /repos/{owner}/{repo}/issues/comments/{comment_id}
https://docs.github.com/rest/issues/comments#delete-an-issue-comment
- issues.updateComment — Atualizar comentário
PATCH /repos/{owner}/{repo}/issues/comments/{comment_id}
https://docs.github.com/rest/issues/comments#update-an-issue-comment
- issues.pinComment — Pin an issue comment
PUT /repos/{owner}/{repo}/issues/comments/{comment_id}/pin
https://docs.github.com/rest/issues/comments#pin-an-issue-comment
- issues.unpinComment — Unpin an issue comment
DELETE /repos/{owner}/{repo}/issues/comments/{comment_id}/pin
https://docs.github.com/rest/issues/comments#unpin-an-issue-comment
- reactions.listForIssueComment — Listar comentários
GET /repos/{owner}/{repo}/issues/comments/{comment_id}/reactions
https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue-comment
- reactions.createForIssueComment — Criar comentário
POST /repos/{owner}/{repo}/issues/comments/{comment_id}/reactions
https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue-comment
- reactions.deleteForIssueComment — Excluir comentário
DELETE /repos/{owner}/{repo}/issues/comments/{comment_id}/reactions/{reaction_id}
https://docs.github.com/rest/reactions/reactions#delete-an-issue-comment-reaction
- issues.listEventsForRepo — Listar chamados no repositório
GET /repos/{owner}/{repo}/issues/events
https://docs.github.com/rest/issues/events#list-issue-events-for-a-repository
- issues.getEvent — Consultar chamado
GET /repos/{owner}/{repo}/issues/events/{event_id}
https://docs.github.com/rest/issues/events#get-an-issue-event
- issues.get — Consultar chamado
GET /repos/{owner}/{repo}/issues/{issue_number}
https://docs.github.com/rest/issues/issues#get-an-issue
- issues.update — Atualizar chamado
PATCH /repos/{owner}/{repo}/issues/{issue_number}
https://docs.github.com/rest/issues/issues#update-an-issue
- issues.addAssignees — Adicionar chamado
POST /repos/{owner}/{repo}/issues/{issue_number}/assignees
https://docs.github.com/rest/issues/assignees#add-assignees-to-an-issue
- issues.removeAssignees — Remover chamado
DELETE /repos/{owner}/{repo}/issues/{issue_number}/assignees
https://docs.github.com/rest/issues/assignees#remove-assignees-from-an-issue
- issues.checkUserCanBeAssignedToIssue — Verificar chamado
GET /repos/{owner}/{repo}/issues/{issue_number}/assignees/{assignee}
https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned-to-a-issue
- issues.listComments — Listar comentários
GET /repos/{owner}/{repo}/issues/{issue_number}/comments
https://docs.github.com/rest/issues/comments#list-issue-comments
- issues.createComment — Publicar um comentário em uma issue
POST /repos/{owner}/{repo}/issues/{issue_number}/comments
https://docs.github.com/rest/issues/comments#create-an-issue-comment
- issues.listDependenciesBlockedBy — Listar chamados
GET /repos/{owner}/{repo}/issues/{issue_number}/dependencies/blocked_by
https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by
- issues.addBlockedByDependency — Adicionar chamado
POST /repos/{owner}/{repo}/issues/{issue_number}/dependencies/blocked_by
https://docs.github.com/rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by
- issues.removeDependencyBlockedBy — Remover chamado
DELETE /repos/{owner}/{repo}/issues/{issue_number}/dependencies/blocked_by/{issue_id}
https://docs.github.com/rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by
- issues.listDependenciesBlocking — Listar chamados
GET /repos/{owner}/{repo}/issues/{issue_number}/dependencies/blocking
https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking
- issues.listEvents — Listar chamados
GET /repos/{owner}/{repo}/issues/{issue_number}/events
https://docs.github.com/rest/issues/events#list-issue-events
- issues.listIssueFieldValuesForIssue — Listar campos de chamados
GET /repos/{owner}/{repo}/issues/{issue_number}/issue-field-values
https://docs.github.com/rest/issues/issue-field-values#list-issue-field-values-for-an-issue
- issues.setIssueFieldValues — Definir campo de chamado
PUT /repos/{owner}/{repo}/issues/{issue_number}/issue-field-values
https://docs.github.com/rest/issues/issue-field-values#set-issue-field-values-for-an-issue
- issues.addIssueFieldValues — Adicionar campo de chamado
POST /repos/{owner}/{repo}/issues/{issue_number}/issue-field-values
https://docs.github.com/rest/issues/issue-field-values#add-issue-field-values-to-an-issue
- issues.deleteIssueFieldValue — Excluir campo de chamado
DELETE /repos/{owner}/{repo}/issues/{issue_number}/issue-field-values/{issue_field_id}
https://docs.github.com/rest/issues/issue-field-values#delete-an-issue-field-value-from-an-issue
- issues.listLabelsOnIssue — Listar chamados
GET /repos/{owner}/{repo}/issues/{issue_number}/labels
https://docs.github.com/rest/issues/labels#list-labels-for-an-issue
- issues.setLabels — Definir chamado
PUT /repos/{owner}/{repo}/issues/{issue_number}/labels
https://docs.github.com/rest/issues/labels#set-labels-for-an-issue
- issues.addLabels — Adicionar chamado
POST /repos/{owner}/{repo}/issues/{issue_number}/labels
https://docs.github.com/rest/issues/labels#add-labels-to-an-issue
- issues.removeAllLabels — Listar chamados
DELETE /repos/{owner}/{repo}/issues/{issue_number}/labels
https://docs.github.com/rest/issues/labels#remove-all-labels-from-an-issue
- issues.removeLabel — Remover chamado
DELETE /repos/{owner}/{repo}/issues/{issue_number}/labels/{name}
https://docs.github.com/rest/issues/labels#remove-a-label-from-an-issue
- issues.lock — Lock an issue
PUT /repos/{owner}/{repo}/issues/{issue_number}/lock
https://docs.github.com/rest/issues/issues#lock-an-issue
- issues.unlock — Unlock an issue
DELETE /repos/{owner}/{repo}/issues/{issue_number}/lock
https://docs.github.com/rest/issues/issues#unlock-an-issue
- issues.getParent — Consultar chamado
GET /repos/{owner}/{repo}/issues/{issue_number}/parent
https://docs.github.com/rest/issues/sub-issues#get-parent-issue
- reactions.listForIssue — Listar chamados
GET /repos/{owner}/{repo}/issues/{issue_number}/reactions
https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue
- reactions.createForIssue — Criar chamado
POST /repos/{owner}/{repo}/issues/{issue_number}/reactions
https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue
- reactions.deleteForIssue — Excluir chamado
DELETE /repos/{owner}/{repo}/issues/{issue_number}/reactions/{reaction_id}
https://docs.github.com/rest/reactions/reactions#delete-an-issue-reaction
- issues.removeSubIssue — Remover chamado
DELETE /repos/{owner}/{repo}/issues/{issue_number}/sub_issue
https://docs.github.com/rest/issues/sub-issues#remove-sub-issue
- issues.listSubIssues — Listar chamados
GET /repos/{owner}/{repo}/issues/{issue_number}/sub_issues
https://docs.github.com/rest/issues/sub-issues#list-sub-issues
- issues.addSubIssue — Adicionar chamado
POST /repos/{owner}/{repo}/issues/{issue_number}/sub_issues
https://docs.github.com/rest/issues/sub-issues#add-sub-issue
- issues.reprioritizeSubIssue — Reprioritize sub-issue
PATCH /repos/{owner}/{repo}/issues/{issue_number}/sub_issues/priority
https://docs.github.com/rest/issues/sub-issues#reprioritize-sub-issue
- issues.listEventsForTimeline — Listar chamados
GET /repos/{owner}/{repo}/issues/{issue_number}/timeline
https://docs.github.com/rest/issues/timeline#list-timeline-events-for-an-issue
- repos.listDeployKeys — List deploy keys
GET /repos/{owner}/{repo}/keys
https://docs.github.com/rest/deploy-keys/deploy-keys#list-deploy-keys
- repos.createDeployKey — Create a deploy key
POST /repos/{owner}/{repo}/keys
https://docs.github.com/rest/deploy-keys/deploy-keys#create-a-deploy-key
- repos.getDeployKey — Get a deploy key
GET /repos/{owner}/{repo}/keys/{key_id}
https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key
- repos.deleteDeployKey — Delete a deploy key
DELETE /repos/{owner}/{repo}/keys/{key_id}
https://docs.github.com/rest/deploy-keys/deploy-keys#delete-a-deploy-key
- issues.listLabelsForRepo — Listar etiquetas no repositório
GET /repos/{owner}/{repo}/labels
https://docs.github.com/rest/issues/labels#list-labels-for-a-repository
- issues.createLabel — Criar etiqueta
POST /repos/{owner}/{repo}/labels
https://docs.github.com/rest/issues/labels#create-a-label
- issues.getLabel — Consultar etiqueta
GET /repos/{owner}/{repo}/labels/{name}
https://docs.github.com/rest/issues/labels#get-a-label
- issues.deleteLabel — Excluir etiqueta
DELETE /repos/{owner}/{repo}/labels/{name}
https://docs.github.com/rest/issues/labels#delete-a-label
- issues.updateLabel — Atualizar etiqueta
PATCH /repos/{owner}/{repo}/labels/{name}
https://docs.github.com/rest/issues/labels#update-a-label
- repos.listLanguages — Listar repositórios de código
GET /repos/{owner}/{repo}/languages
https://docs.github.com/rest/repos/repos#list-repository-languages
- licenses.getForRepo — Consultar repositório de código
GET /repos/{owner}/{repo}/license
https://docs.github.com/rest/licenses/licenses#get-the-license-for-a-repository
- repos.mergeUpstream — Sync a fork branch with the upstream repository
POST /repos/{owner}/{repo}/merge-upstream
https://docs.github.com/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository
- repos.merge — Mesclar branch de código
POST /repos/{owner}/{repo}/merges
https://docs.github.com/rest/branches/branches#merge-a-branch
- issues.listMilestones — Listar marcos
GET /repos/{owner}/{repo}/milestones
https://docs.github.com/rest/issues/milestones#list-milestones
- issues.createMilestone — Criar marco
POST /repos/{owner}/{repo}/milestones
https://docs.github.com/rest/issues/milestones#create-a-milestone
- issues.getMilestone — Consultar marco
GET /repos/{owner}/{repo}/milestones/{milestone_number}
https://docs.github.com/rest/issues/milestones#get-a-milestone
- issues.deleteMilestone — Excluir marco
DELETE /repos/{owner}/{repo}/milestones/{milestone_number}
https://docs.github.com/rest/issues/milestones#delete-a-milestone
- issues.updateMilestone — Atualizar marco
PATCH /repos/{owner}/{repo}/milestones/{milestone_number}
https://docs.github.com/rest/issues/milestones#update-a-milestone
- issues.listLabelsForMilestone — Listar chamados
GET /repos/{owner}/{repo}/milestones/{milestone_number}/labels
https://docs.github.com/rest/issues/labels#list-labels-for-issues-in-a-milestone
- activity.listRepoNotificationsForAuthenticatedUser — Listar repositórios de código do usuário conectado
GET /repos/{owner}/{repo}/notifications
https://docs.github.com/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user
- activity.markRepoNotificationsAsRead — Mark repository notifications as read
PUT /repos/{owner}/{repo}/notifications
https://docs.github.com/rest/activity/notifications#mark-repository-notifications-as-read
- repos.getPages — Get a GitHub Pages site
GET /repos/{owner}/{repo}/pages
https://docs.github.com/rest/pages/pages#get-a-apiname-pages-site
- repos.updateInformationAboutPagesSite — Update information about a GitHub Pages site
PUT /repos/{owner}/{repo}/pages
https://docs.github.com/rest/pages/pages#update-information-about-a-apiname-pages-site
- repos.createPagesSite — Create a GitHub Pages site
POST /repos/{owner}/{repo}/pages
https://docs.github.com/rest/pages/pages#create-a-apiname-pages-site
- repos.deletePagesSite — Delete a GitHub Pages site
DELETE /repos/{owner}/{repo}/pages
https://docs.github.com/rest/pages/pages#delete-a-apiname-pages-site
- repos.listPagesBuilds — List GitHub Pages builds
GET /repos/{owner}/{repo}/pages/builds
https://docs.github.com/rest/pages/pages#list-apiname-pages-builds
- repos.requestPagesBuild — Request a GitHub Pages build
POST /repos/{owner}/{repo}/pages/builds
https://docs.github.com/rest/pages/pages#request-a-apiname-pages-build
- repos.getLatestPagesBuild — Get latest Pages build
GET /repos/{owner}/{repo}/pages/builds/latest
https://docs.github.com/rest/pages/pages#get-latest-pages-build
- repos.getPagesBuild — Get GitHub Pages build
GET /repos/{owner}/{repo}/pages/builds/{build_id}
https://docs.github.com/rest/pages/pages#get-apiname-pages-build
- repos.createPagesDeployment — Criar implantação
POST /repos/{owner}/{repo}/pages/deployments
https://docs.github.com/rest/pages/pages#create-a-github-pages-deployment
- repos.getPagesDeployment — Consultar implantação
GET /repos/{owner}/{repo}/pages/deployments/{pages_deployment_id}
https://docs.github.com/rest/pages/pages#get-the-status-of-a-github-pages-deployment
- repos.cancelPagesDeployment — Cancelar implantação
POST /repos/{owner}/{repo}/pages/deployments/{pages_deployment_id}/cancel
https://docs.github.com/rest/pages/pages#cancel-a-github-pages-deployment
- repos.getPagesHealthCheck — Get a DNS health check for GitHub Pages
GET /repos/{owner}/{repo}/pages/health
https://docs.github.com/rest/pages/pages#get-a-dns-health-check-for-github-pages
- repos.checkPrivateVulnerabilityReporting — Verificar vulnerabilidade no repositório
GET /repos/{owner}/{repo}/private-vulnerability-reporting
https://docs.github.com/rest/repos/repos#check-if-private-vulnerability-reporting-is-enabled-for-a-repository
- repos.enablePrivateVulnerabilityReporting — Ativar vulnerabilidade no repositório
PUT /repos/{owner}/{repo}/private-vulnerability-reporting
https://docs.github.com/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository
- repos.disablePrivateVulnerabilityReporting — Desativar vulnerabilidade no repositório
DELETE /repos/{owner}/{repo}/private-vulnerability-reporting
https://docs.github.com/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository
- repos.customPropertiesForReposGetRepositoryValues — Listar repositórios de código
GET /repos/{owner}/{repo}/properties/values
https://docs.github.com/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository
- repos.customPropertiesForReposCreateOrUpdateRepositoryValues — Criar repositório de código
PATCH /repos/{owner}/{repo}/properties/values
https://docs.github.com/rest/repos/custom-properties#create-or-update-custom-property-values-for-a-repository
- pulls.list — Listar solicitações de alteração de código (pull requests)
GET /repos/{owner}/{repo}/pulls
https://docs.github.com/rest/pulls/pulls#list-pull-requests
- pulls.create — Criar solicitação de alteração de código (pull request)
POST /repos/{owner}/{repo}/pulls
https://docs.github.com/rest/pulls/pulls#create-a-pull-request
- pulls.listReviewCommentsForRepo — Listar comentários no repositório
GET /repos/{owner}/{repo}/pulls/comments
https://docs.github.com/rest/pulls/comments#list-review-comments-in-a-repository
- pulls.getReviewComment — Consultar comentário
GET /repos/{owner}/{repo}/pulls/comments/{comment_id}
https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request
- pulls.deleteReviewComment — Excluir comentário
DELETE /repos/{owner}/{repo}/pulls/comments/{comment_id}
https://docs.github.com/rest/pulls/comments#delete-a-review-comment-for-a-pull-request
- pulls.updateReviewComment — Atualizar comentário
PATCH /repos/{owner}/{repo}/pulls/comments/{comment_id}
https://docs.github.com/rest/pulls/comments#update-a-review-comment-for-a-pull-request
- reactions.listForPullRequestReviewComment — Listar comentários
GET /repos/{owner}/{repo}/pulls/comments/{comment_id}/reactions
https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment
- reactions.createForPullRequestReviewComment — Criar comentário
POST /repos/{owner}/{repo}/pulls/comments/{comment_id}/reactions
https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment
- reactions.deleteForPullRequestComment — Excluir comentário
DELETE /repos/{owner}/{repo}/pulls/comments/{comment_id}/reactions/{reaction_id}
https://docs.github.com/rest/reactions/reactions#delete-a-pull-request-comment-reaction
- pulls.get — Consultar solicitação de alteração de código (pull request)
GET /repos/{owner}/{repo}/pulls/{pull_number}
https://docs.github.com/rest/pulls/pulls#get-a-pull-request
- pulls.update — Atualizar solicitação de alteração de código (pull request)
PATCH /repos/{owner}/{repo}/pulls/{pull_number}
https://docs.github.com/rest/pulls/pulls#update-a-pull-request
- codespaces.createWithPrForAuthenticatedUser — Criar solicitação de alteração de código (pull request)
POST /repos/{owner}/{repo}/pulls/{pull_number}/codespaces
https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-from-a-pull-request
- pulls.listReviewComments — Listar comentários
GET /repos/{owner}/{repo}/pulls/{pull_number}/comments
https://docs.github.com/rest/pulls/comments#list-review-comments-on-a-pull-request
- pulls.createReviewComment — Criar comentário
POST /repos/{owner}/{repo}/pulls/{pull_number}/comments
https://docs.github.com/rest/pulls/comments#create-a-review-comment-for-a-pull-request
- pulls.createReplyForReviewComment — Criar comentário
POST /repos/{owner}/{repo}/pulls/{pull_number}/comments/{comment_id}/replies
https://docs.github.com/rest/pulls/comments#create-a-reply-for-a-review-comment
- pulls.listCommits — Listar solicitações de alteração de código (pull requests)
GET /repos/{owner}/{repo}/pulls/{pull_number}/commits
https://docs.github.com/rest/pulls/pulls#list-commits-on-a-pull-request
- pulls.listFiles — Listar solicitações de alteração de código (pull requests)
GET /repos/{owner}/{repo}/pulls/{pull_number}/files
https://docs.github.com/rest/pulls/pulls#list-pull-requests-files
- pulls.checkIfMerged — Verificar solicitação de alteração de código (pull request)
GET /repos/{owner}/{repo}/pulls/{pull_number}/merge
https://docs.github.com/rest/pulls/pulls#check-if-a-pull-request-has-been-merged
- pulls.merge — Integrar um pull request
PUT /repos/{owner}/{repo}/pulls/{pull_number}/merge
https://docs.github.com/rest/pulls/pulls#merge-a-pull-request
- pulls.listRequestedReviewers — Listar revisões de código
GET /repos/{owner}/{repo}/pulls/{pull_number}/requested_reviewers
https://docs.github.com/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request
- pulls.requestReviewers — Request reviewers for a pull request
POST /repos/{owner}/{repo}/pulls/{pull_number}/requested_reviewers
https://docs.github.com/rest/pulls/review-requests#request-reviewers-for-a-pull-request
- pulls.removeRequestedReviewers — Remover revisão de código
DELETE /repos/{owner}/{repo}/pulls/{pull_number}/requested_reviewers
https://docs.github.com/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request
- pulls.listReviews — Listar revisões de código
GET /repos/{owner}/{repo}/pulls/{pull_number}/reviews
https://docs.github.com/rest/pulls/reviews#list-reviews-for-a-pull-request
- pulls.createReview — Criar revisão de código
POST /repos/{owner}/{repo}/pulls/{pull_number}/reviews
https://docs.github.com/rest/pulls/reviews#create-a-review-for-a-pull-request
- pulls.getReview — Consultar revisão de código
GET /repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}
https://docs.github.com/rest/pulls/reviews#get-a-review-for-a-pull-request
- pulls.updateReview — Atualizar revisão de código
PUT /repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}
https://docs.github.com/rest/pulls/reviews#update-a-review-for-a-pull-request
- pulls.deletePendingReview — Excluir revisão de código
DELETE /repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}
https://docs.github.com/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request
- pulls.listCommentsForReview — Listar comentários
GET /repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}/comments
https://docs.github.com/rest/pulls/reviews#list-comments-for-a-pull-request-review
- pulls.dismissReview — Dismiss a review for a pull request
PUT /repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}/dismissals
https://docs.github.com/rest/pulls/reviews#dismiss-a-review-for-a-pull-request
- pulls.submitReview — Submit a review for a pull request
POST /repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}/events
https://docs.github.com/rest/pulls/reviews#submit-a-review-for-a-pull-request
- pulls.updateBranch — Atualizar solicitação de alteração de código (pull request)
PUT /repos/{owner}/{repo}/pulls/{pull_number}/update-branch
https://docs.github.com/rest/pulls/pulls#update-a-pull-request-branch
- repos.getReadme — Consultar repositório de código
GET /repos/{owner}/{repo}/readme
https://docs.github.com/rest/repos/contents#get-a-repository-readme
- repos.getReadmeInDirectory — Consultar repositório de código
GET /repos/{owner}/{repo}/readme/{dir}
https://docs.github.com/rest/repos/contents#get-a-repository-readme-for-a-directory
- repos.listReleases — Listar versões
GET /repos/{owner}/{repo}/releases
https://docs.github.com/rest/releases/releases#list-releases
- repos.createRelease — Criar versão
POST /repos/{owner}/{repo}/releases
https://docs.github.com/rest/releases/releases#create-a-release
- repos.getReleaseAsset — Consultar versão
GET /repos/{owner}/{repo}/releases/assets/{asset_id}
https://docs.github.com/rest/releases/assets#get-a-release-asset
- repos.deleteReleaseAsset — Excluir versão
DELETE /repos/{owner}/{repo}/releases/assets/{asset_id}
https://docs.github.com/rest/releases/assets#delete-a-release-asset
- repos.updateReleaseAsset — Atualizar versão
PATCH /repos/{owner}/{repo}/releases/assets/{asset_id}
https://docs.github.com/rest/releases/assets#update-a-release-asset
- repos.generateReleaseNotes — Gerar versão
POST /repos/{owner}/{repo}/releases/generate-notes
https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release
- repos.getLatestRelease — Consultar versão
GET /repos/{owner}/{repo}/releases/latest
https://docs.github.com/rest/releases/releases#get-the-latest-release
- repos.getReleaseByTag — Consultar versão
GET /repos/{owner}/{repo}/releases/tags/{tag}
https://docs.github.com/rest/releases/releases#get-a-release-by-tag-name
- repos.getRelease — Consultar versão
GET /repos/{owner}/{repo}/releases/{release_id}
https://docs.github.com/rest/releases/releases#get-a-release
- repos.deleteRelease — Excluir versão
DELETE /repos/{owner}/{repo}/releases/{release_id}
https://docs.github.com/rest/releases/releases#delete-a-release
- repos.updateRelease — Atualizar versão
PATCH /repos/{owner}/{repo}/releases/{release_id}
https://docs.github.com/rest/releases/releases#update-a-release
- repos.listReleaseAssets — Listar versões
GET /repos/{owner}/{repo}/releases/{release_id}/assets
https://docs.github.com/rest/releases/assets#list-release-assets
- repos.uploadReleaseAsset — Enviar versão
POST /repos/{owner}/{repo}/releases/{release_id}/assets
https://docs.github.com/rest/releases/assets#upload-a-release-asset
- reactions.listForRelease — Listar reações
GET /repos/{owner}/{repo}/releases/{release_id}/reactions
https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-release
- reactions.createForRelease — Criar reação
POST /repos/{owner}/{repo}/releases/{release_id}/reactions
https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-release
- reactions.deleteForRelease — Excluir reação
DELETE /repos/{owner}/{repo}/releases/{release_id}/reactions/{reaction_id}
https://docs.github.com/rest/reactions/reactions#delete-a-release-reaction
- repos.getBranchRules — Consultar branch de código
GET /repos/{owner}/{repo}/rules/branches/{branch}
https://docs.github.com/rest/repos/rules#get-rules-for-a-branch
- repos.getRepoRulesets — Listar conjuntos de regras no repositório
GET /repos/{owner}/{repo}/rulesets
https://docs.github.com/rest/repos/rules#get-all-repository-rulesets
- repos.createRepoRuleset — Criar conjunto de regras no repositório
POST /repos/{owner}/{repo}/rulesets
https://docs.github.com/rest/repos/rules#create-a-repository-ruleset
- repos.getRepoRuleSuites — Listar repositórios de código
GET /repos/{owner}/{repo}/rulesets/rule-suites
https://docs.github.com/rest/repos/rule-suites#list-repository-rule-suites
- repos.getRepoRuleSuite — Consultar repositório de código
GET /repos/{owner}/{repo}/rulesets/rule-suites/{rule_suite_id}
https://docs.github.com/rest/repos/rule-suites#get-a-repository-rule-suite
- repos.getRepoRuleset — Consultar conjunto de regras no repositório
GET /repos/{owner}/{repo}/rulesets/{ruleset_id}
https://docs.github.com/rest/repos/rules#get-a-repository-ruleset
- repos.updateRepoRuleset — Atualizar conjunto de regras no repositório
PUT /repos/{owner}/{repo}/rulesets/{ruleset_id}
https://docs.github.com/rest/repos/rules#update-a-repository-ruleset
- repos.deleteRepoRuleset — Excluir conjunto de regras no repositório
DELETE /repos/{owner}/{repo}/rulesets/{ruleset_id}
https://docs.github.com/rest/repos/rules#delete-a-repository-ruleset
- repos.getRepoRulesetHistory — Consultar conjunto de regras no repositório
GET /repos/{owner}/{repo}/rulesets/{ruleset_id}/history
https://docs.github.com/rest/repos/rules#get-repository-ruleset-history
- repos.getRepoRulesetVersion — Consultar conjunto de regras no repositório
GET /repos/{owner}/{repo}/rulesets/{ruleset_id}/history/{version_id}
https://docs.github.com/rest/repos/rules#get-repository-ruleset-version
- secretScanning.listAlertsForRepo — Listar segredos no repositório
GET /repos/{owner}/{repo}/secret-scanning/alerts
https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository
- secretScanning.getAlert — Consultar segredo
GET /repos/{owner}/{repo}/secret-scanning/alerts/{alert_number}
https://docs.github.com/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert
- secretScanning.updateAlert — Atualizar segredo
PATCH /repos/{owner}/{repo}/secret-scanning/alerts/{alert_number}
https://docs.github.com/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert
- secretScanning.listLocationsForAlert — Listar segredos
GET /repos/{owner}/{repo}/secret-scanning/alerts/{alert_number}/locations
https://docs.github.com/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert
- secretScanning.createPushProtectionBypass — Create a push protection bypass
POST /repos/{owner}/{repo}/secret-scanning/push-protection-bypasses
https://docs.github.com/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass
- secretScanning.getScanHistory — Consultar segredo no repositório
GET /repos/{owner}/{repo}/secret-scanning/scan-history
https://docs.github.com/rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository
- securityAdvisories.listRepositoryAdvisories — Listar avisos de segurança no repositório
GET /repos/{owner}/{repo}/security-advisories
https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories
- securityAdvisories.createRepositoryAdvisory — Criar aviso de segurança no repositório
POST /repos/{owner}/{repo}/security-advisories
https://docs.github.com/rest/security-advisories/repository-advisories#create-a-repository-security-advisory
- securityAdvisories.createPrivateVulnerabilityReport — Privately report a security vulnerability
POST /repos/{owner}/{repo}/security-advisories/reports
https://docs.github.com/rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability
- securityAdvisories.getRepositoryAdvisory — Consultar aviso de segurança no repositório
GET /repos/{owner}/{repo}/security-advisories/{ghsa_id}
https://docs.github.com/rest/security-advisories/repository-advisories#get-a-repository-security-advisory
- securityAdvisories.updateRepositoryAdvisory — Atualizar aviso de segurança no repositório
PATCH /repos/{owner}/{repo}/security-advisories/{ghsa_id}
https://docs.github.com/rest/security-advisories/repository-advisories#update-a-repository-security-advisory
- securityAdvisories.createRepositoryAdvisoryCveRequest — Request a CVE for a repository security advisory
POST /repos/{owner}/{repo}/security-advisories/{ghsa_id}/cve
https://docs.github.com/rest/security-advisories/repository-advisories#request-a-cve-for-a-repository-security-advisory
- securityAdvisories.createFork — Create a temporary private fork
POST /repos/{owner}/{repo}/security-advisories/{ghsa_id}/forks
https://docs.github.com/rest/security-advisories/repository-advisories#create-a-temporary-private-fork
- activity.listStargazersForRepo — List stargazers
GET /repos/{owner}/{repo}/stargazers
https://docs.github.com/rest/activity/starring#list-stargazers
- repos.getCodeFrequencyStats — Consultar alteração de código (commit)
GET /repos/{owner}/{repo}/stats/code_frequency
https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-activity
- repos.getCommitActivityStats — Consultar alteração de código (commit)
GET /repos/{owner}/{repo}/stats/commit_activity
https://docs.github.com/rest/metrics/statistics#get-the-last-year-of-commit-activity
- repos.getContributorsStats — Listar alterações de código (commits)
GET /repos/{owner}/{repo}/stats/contributors
https://docs.github.com/rest/metrics/statistics#get-all-contributor-commit-activity
- repos.getParticipationStats — Consultar alteração de código (commit)
GET /repos/{owner}/{repo}/stats/participation
https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-count
- repos.getPunchCardStats — Consultar alteração de código (commit)
GET /repos/{owner}/{repo}/stats/punch_card
https://docs.github.com/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day
- repos.createCommitStatus — Criar alteração de código (commit)
POST /repos/{owner}/{repo}/statuses/{sha}
https://docs.github.com/rest/commits/statuses#create-a-commit-status
- activity.listWatchersForRepo — List watchers
GET /repos/{owner}/{repo}/subscribers
https://docs.github.com/rest/activity/watching#list-watchers
- activity.getRepoSubscription — Consultar assinatura no repositório
GET /repos/{owner}/{repo}/subscription
https://docs.github.com/rest/activity/watching#get-a-repository-subscription
- activity.setRepoSubscription — Definir assinatura no repositório
PUT /repos/{owner}/{repo}/subscription
https://docs.github.com/rest/activity/watching#set-a-repository-subscription
- activity.deleteRepoSubscription — Excluir assinatura no repositório
DELETE /repos/{owner}/{repo}/subscription
https://docs.github.com/rest/activity/watching#delete-a-repository-subscription
- repos.listTags — Listar repositórios de código
GET /repos/{owner}/{repo}/tags
https://docs.github.com/rest/repos/repos#list-repository-tags
- repos.downloadTarballArchive — Baixar repositório de código
GET /repos/{owner}/{repo}/tarball/{ref}
https://docs.github.com/rest/repos/contents#download-a-repository-archive-tar
- repos.listTeams — Listar repositórios de código
GET /repos/{owner}/{repo}/teams
https://docs.github.com/rest/repos/repos#list-repository-teams
- repos.getAllTopics — Listar repositórios de código
GET /repos/{owner}/{repo}/topics
https://docs.github.com/rest/repos/repos#get-all-repository-topics
- repos.replaceAllTopics — Listar repositórios de código
PUT /repos/{owner}/{repo}/topics
https://docs.github.com/rest/repos/repos#replace-all-repository-topics
- repos.getClones — Consultar repositório de código
GET /repos/{owner}/{repo}/traffic/clones
https://docs.github.com/rest/metrics/traffic#get-repository-clones
- repos.getTopPaths — Get top referral paths
GET /repos/{owner}/{repo}/traffic/popular/paths
https://docs.github.com/rest/metrics/traffic#get-top-referral-paths
- repos.getTopReferrers — Get top referral sources
GET /repos/{owner}/{repo}/traffic/popular/referrers
https://docs.github.com/rest/metrics/traffic#get-top-referral-sources
- repos.getViews — Get page views
GET /repos/{owner}/{repo}/traffic/views
https://docs.github.com/rest/metrics/traffic#get-page-views
- repos.transfer — Transfer a repository
POST /repos/{owner}/{repo}/transfer
https://docs.github.com/rest/repos/repos#transfer-a-repository
- repos.checkVulnerabilityAlerts — Verificar alerta no repositório
GET /repos/{owner}/{repo}/vulnerability-alerts
https://docs.github.com/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository
- repos.enableVulnerabilityAlerts — Ativar alerta
PUT /repos/{owner}/{repo}/vulnerability-alerts
https://docs.github.com/rest/repos/repos#enable-vulnerability-alerts
- repos.disableVulnerabilityAlerts — Desativar alerta
DELETE /repos/{owner}/{repo}/vulnerability-alerts
https://docs.github.com/rest/repos/repos#disable-vulnerability-alerts
- repos.downloadZipballArchive — Baixar repositório de código
GET /repos/{owner}/{repo}/zipball/{ref}
https://docs.github.com/rest/repos/contents#download-a-repository-archive-zip
- repos.createUsingTemplate — Criar repositório de código
POST /repos/{template_owner}/{template_repo}/generate
https://docs.github.com/rest/repos/repos#create-a-repository-using-a-template
- repos.listPublic — Listar repositórios de código
GET /repositories
https://docs.github.com/rest/repos/repos#list-public-repositories
- search.code — Search code
GET /search/code
https://docs.github.com/rest/search/search#search-code
- search.commits — Pesquisar alterações de código (commits)
GET /search/commits
https://docs.github.com/rest/search/search#search-commits
- search.issuesAndPullRequests — Pesquisar solicitações de alteração de código (pull requests)
GET /search/issues
https://docs.github.com/rest/search/search#search-issues-and-pull-requests
- search.labels — Pesquisar etiquetas
GET /search/labels
https://docs.github.com/rest/search/search#search-labels
- search.repos — Pesquisar repositórios de código
GET /search/repositories
https://docs.github.com/rest/search/search#search-repositories
- search.topics — Search topics
GET /search/topics
https://docs.github.com/rest/search/search#search-topics
- search.users — Pesquisar usuários
GET /search/users
https://docs.github.com/rest/search/search#search-users
- teams.getLegacy — Consultar equipe
GET /teams/{team_id}
https://docs.github.com/rest/teams/teams#get-a-team-legacy
- teams.deleteLegacy — Excluir equipe
DELETE /teams/{team_id}
https://docs.github.com/rest/teams/teams#delete-a-team-legacy
- teams.updateLegacy — Atualizar equipe
PATCH /teams/{team_id}
https://docs.github.com/rest/teams/teams#update-a-team-legacy
- teams.listPendingInvitationsLegacy — Listar convites
GET /teams/{team_id}/invitations
https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy
- teams.listMembersLegacy — Listar equipes
GET /teams/{team_id}/members
https://docs.github.com/rest/teams/members#list-team-members-legacy
- teams.getMemberLegacy — Consultar equipe
GET /teams/{team_id}/members/{username}
https://docs.github.com/rest/teams/members#get-team-member-legacy
- teams.addMemberLegacy — Adicionar equipe
PUT /teams/{team_id}/members/{username}
https://docs.github.com/rest/teams/members#add-team-member-legacy
- teams.removeMemberLegacy — Remover equipe
DELETE /teams/{team_id}/members/{username}
https://docs.github.com/rest/teams/members#remove-team-member-legacy
- teams.getMembershipForUserLegacy — Consultar vínculo de membro
GET /teams/{team_id}/memberships/{username}
https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy
- teams.addOrUpdateMembershipForUserLegacy — Adicionar vínculo de membro
PUT /teams/{team_id}/memberships/{username}
https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy
- teams.removeMembershipForUserLegacy — Remover vínculo de membro
DELETE /teams/{team_id}/memberships/{username}
https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy
- teams.listReposLegacy — Listar repositórios de código
GET /teams/{team_id}/repos
https://docs.github.com/rest/teams/teams#list-team-repositories-legacy
- teams.checkPermissionsForRepoLegacy — Verificar regra de acesso no repositório
GET /teams/{team_id}/repos/{owner}/{repo}
https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy
- teams.addOrUpdateRepoPermissionsLegacy — Adicionar regra de acesso no repositório
PUT /teams/{team_id}/repos/{owner}/{repo}
https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy
- teams.removeRepoLegacy — Remover repositório de código
DELETE /teams/{team_id}/repos/{owner}/{repo}
https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy
- teams.listChildLegacy — Listar equipes
GET /teams/{team_id}/teams
https://docs.github.com/rest/teams/teams#list-child-teams-legacy
- users.getAuthenticated — Consultar usuário
GET /user
https://docs.github.com/rest/users/users#get-the-authenticated-user
- users.updateAuthenticated — Atualizar usuário
PATCH /user
https://docs.github.com/rest/users/users#update-the-authenticated-user
- users.listBlockedByAuthenticatedUser — Listar usuários
GET /user/blocks
https://docs.github.com/rest/users/blocking#list-users-blocked-by-the-authenticated-user
- users.checkBlocked — Verificar usuário
GET /user/blocks/{username}
https://docs.github.com/rest/users/blocking#check-if-a-user-is-blocked-by-the-authenticated-user
- users.block — Block a user
PUT /user/blocks/{username}
https://docs.github.com/rest/users/blocking#block-a-user
- users.unblock — Unblock a user
DELETE /user/blocks/{username}
https://docs.github.com/rest/users/blocking#unblock-a-user
- codespaces.listForAuthenticatedUser — Listar usuários
GET /user/codespaces
https://docs.github.com/rest/codespaces/codespaces#list-codespaces-for-the-authenticated-user
- codespaces.createForAuthenticatedUser — Criar usuário
POST /user/codespaces
https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-for-the-authenticated-user
- codespaces.listSecretsForAuthenticatedUser — Listar segredos do usuário conectado
GET /user/codespaces/secrets
https://docs.github.com/rest/codespaces/secrets#list-secrets-for-the-authenticated-user
- codespaces.getPublicKeyForAuthenticatedUser — Consultar chave pública do usuário conectado
GET /user/codespaces/secrets/public-key
https://docs.github.com/rest/codespaces/secrets#get-public-key-for-the-authenticated-user
- codespaces.getSecretForAuthenticatedUser — Consultar segredo do usuário conectado
GET /user/codespaces/secrets/{secret_name}
https://docs.github.com/rest/codespaces/secrets#get-a-secret-for-the-authenticated-user
- codespaces.createOrUpdateSecretForAuthenticatedUser — Criar segredo do usuário conectado
PUT /user/codespaces/secrets/{secret_name}
https://docs.github.com/rest/codespaces/secrets#create-or-update-a-secret-for-the-authenticated-user
- codespaces.deleteSecretForAuthenticatedUser — Excluir segredo do usuário conectado
DELETE /user/codespaces/secrets/{secret_name}
https://docs.github.com/rest/codespaces/secrets#delete-a-secret-for-the-authenticated-user
- codespaces.listRepositoriesForSecretForAuthenticatedUser — Listar segredos
GET /user/codespaces/secrets/{secret_name}/repositories
https://docs.github.com/rest/codespaces/secrets#list-selected-repositories-for-a-user-secret
- codespaces.setRepositoriesForSecretForAuthenticatedUser — Definir segredo
PUT /user/codespaces/secrets/{secret_name}/repositories
https://docs.github.com/rest/codespaces/secrets#set-selected-repositories-for-a-user-secret
- codespaces.addRepositoryForSecretForAuthenticatedUser — Adicionar segredo no repositório
PUT /user/codespaces/secrets/{secret_name}/repositories/{repository_id}
https://docs.github.com/rest/codespaces/secrets#add-a-selected-repository-to-a-user-secret
- codespaces.removeRepositoryForSecretForAuthenticatedUser — Remover segredo no repositório
DELETE /user/codespaces/secrets/{secret_name}/repositories/{repository_id}
https://docs.github.com/rest/codespaces/secrets#remove-a-selected-repository-from-a-user-secret
- codespaces.getForAuthenticatedUser — Consultar usuário
GET /user/codespaces/{codespace_name}
https://docs.github.com/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user
- codespaces.deleteForAuthenticatedUser — Excluir usuário
DELETE /user/codespaces/{codespace_name}
https://docs.github.com/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user
- codespaces.updateForAuthenticatedUser — Atualizar usuário
PATCH /user/codespaces/{codespace_name}
https://docs.github.com/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user
- codespaces.exportForAuthenticatedUser — Exportar usuário
POST /user/codespaces/{codespace_name}/exports
https://docs.github.com/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user
- codespaces.getExportDetailsForAuthenticatedUser — Get details about a codespace export
GET /user/codespaces/{codespace_name}/exports/{export_id}
https://docs.github.com/rest/codespaces/codespaces#get-details-about-a-codespace-export
- codespaces.codespaceMachinesForAuthenticatedUser — List machine types for a codespace
GET /user/codespaces/{codespace_name}/machines
https://docs.github.com/rest/codespaces/machines#list-machine-types-for-a-codespace
- codespaces.publishForAuthenticatedUser — Criar repositório de código
POST /user/codespaces/{codespace_name}/publish
https://docs.github.com/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace
- codespaces.startForAuthenticatedUser — Iniciar usuário
POST /user/codespaces/{codespace_name}/start
https://docs.github.com/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user
- codespaces.stopForAuthenticatedUser — Parar usuário
POST /user/codespaces/{codespace_name}/stop
https://docs.github.com/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user
- packages.listDockerMigrationConflictingPackagesForAuthenticatedUser — Consultar pacote de software
GET /user/docker/conflicts
https://docs.github.com/rest/packages/packages#get-list-of-conflicting-packages-during-docker-migration-for-authenticated-user
- users.setPrimaryEmailVisibilityForAuthenticatedUser — Definir usuário
PATCH /user/email/visibility
https://docs.github.com/rest/users/emails#set-primary-email-visibility-for-the-authenticated-user
- users.listEmailsForAuthenticatedUser — Listar usuários
GET /user/emails
https://docs.github.com/rest/users/emails#list-email-addresses-for-the-authenticated-user
- users.addEmailForAuthenticatedUser — Adicionar usuário
POST /user/emails
https://docs.github.com/rest/users/emails#add-an-email-address-for-the-authenticated-user
- users.deleteEmailForAuthenticatedUser — Excluir usuário
DELETE /user/emails
https://docs.github.com/rest/users/emails#delete-an-email-address-for-the-authenticated-user
- users.listFollowersForAuthenticatedUser — Listar usuários
GET /user/followers
https://docs.github.com/rest/users/followers#list-followers-of-the-authenticated-user
- users.listFollowedByAuthenticatedUser — Listar usuários
GET /user/following
https://docs.github.com/rest/users/followers#list-the-people-the-authenticated-user-follows
- users.checkPersonIsFollowedByAuthenticated — Verificar usuário
GET /user/following/{username}
https://docs.github.com/rest/users/followers#check-if-a-person-is-followed-by-the-authenticated-user
- users.follow — Follow a user
PUT /user/following/{username}
https://docs.github.com/rest/users/followers#follow-a-user
- users.unfollow — Unfollow a user
DELETE /user/following/{username}
https://docs.github.com/rest/users/followers#unfollow-a-user
- users.listGpgKeysForAuthenticatedUser — Listar usuários
GET /user/gpg_keys
https://docs.github.com/rest/users/gpg-keys#list-gpg-keys-for-the-authenticated-user
- users.createGpgKeyForAuthenticatedUser — Criar usuário
POST /user/gpg_keys
https://docs.github.com/rest/users/gpg-keys#create-a-gpg-key-for-the-authenticated-user
- users.getGpgKeyForAuthenticatedUser — Consultar usuário
GET /user/gpg_keys/{gpg_key_id}
https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user
- users.deleteGpgKeyForAuthenticatedUser — Excluir usuário
DELETE /user/gpg_keys/{gpg_key_id}
https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user
- apps.listInstallationsForAuthenticatedUser — Listar tokens de acesso
GET /user/installations
https://docs.github.com/rest/apps/installations#list-app-installations-accessible-to-the-user-access-token
- apps.listInstallationReposForAuthenticatedUser — Listar tokens de acesso
GET /user/installations/{installation_id}/repositories
https://docs.github.com/rest/apps/installations#list-repositories-accessible-to-the-user-access-token
- apps.addRepoToInstallationForAuthenticatedUser — Adicionar repositório de código
PUT /user/installations/{installation_id}/repositories/{repository_id}
https://docs.github.com/rest/apps/installations#add-a-repository-to-an-app-installation
- apps.removeRepoFromInstallationForAuthenticatedUser — Remover repositório de código
DELETE /user/installations/{installation_id}/repositories/{repository_id}
https://docs.github.com/rest/apps/installations#remove-a-repository-from-an-app-installation
- interactions.getRestrictionsForAuthenticatedUser — Consultar repositório de código
GET /user/interaction-limits
https://docs.github.com/rest/interactions/user#get-interaction-restrictions-for-your-public-repositories
- interactions.setRestrictionsForAuthenticatedUser — Definir repositório de código
PUT /user/interaction-limits
https://docs.github.com/rest/interactions/user#set-interaction-restrictions-for-your-public-repositories
- interactions.removeRestrictionsForAuthenticatedUser — Remover repositório de código
DELETE /user/interaction-limits
https://docs.github.com/rest/interactions/user#remove-interaction-restrictions-from-your-public-repositories
- issues.listForAuthenticatedUser — Listar chamados do usuário conectado
GET /user/issues
https://docs.github.com/rest/issues/issues#list-user-account-issues-assigned-to-the-authenticated-user
- users.listPublicSshKeysForAuthenticatedUser — Listar usuários
GET /user/keys
https://docs.github.com/rest/users/keys#list-public-ssh-keys-for-the-authenticated-user
- users.createPublicSshKeyForAuthenticatedUser — Criar usuário
POST /user/keys
https://docs.github.com/rest/users/keys#create-a-public-ssh-key-for-the-authenticated-user
- users.getPublicSshKeyForAuthenticatedUser — Consultar usuário
GET /user/keys/{key_id}
https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user
- users.deletePublicSshKeyForAuthenticatedUser — Excluir usuário
DELETE /user/keys/{key_id}
https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user
- apps.listSubscriptionsForAuthenticatedUser — Listar assinaturas do usuário conectado
GET /user/marketplace_purchases
https://docs.github.com/rest/apps/marketplace#list-subscriptions-for-the-authenticated-user
- apps.listSubscriptionsForAuthenticatedUserStubbed — Listar assinaturas do usuário conectado
GET /user/marketplace_purchases/stubbed
https://docs.github.com/rest/apps/marketplace#list-subscriptions-for-the-authenticated-user-stubbed
- orgs.listMembershipsForAuthenticatedUser — Listar vínculos de membros da organização
GET /user/memberships/orgs
https://docs.github.com/rest/orgs/members#list-organization-memberships-for-the-authenticated-user
- orgs.getMembershipForAuthenticatedUser — Consultar vínculo de membro da organização
GET /user/memberships/orgs/{org}
https://docs.github.com/rest/orgs/members#get-an-organization-membership-for-the-authenticated-user
- orgs.updateMembershipForAuthenticatedUser — Atualizar vínculo de membro da organização
PATCH /user/memberships/orgs/{org}
https://docs.github.com/rest/orgs/members#update-an-organization-membership-for-the-authenticated-user
- migrations.listForAuthenticatedUser — Listar usuários
GET /user/migrations
https://docs.github.com/rest/migrations/users#list-user-migrations
- migrations.startForAuthenticatedUser — Iniciar usuário
POST /user/migrations
https://docs.github.com/rest/migrations/users#start-a-user-migration
- migrations.getStatusForAuthenticatedUser — Consultar usuário
GET /user/migrations/{migration_id}
https://docs.github.com/rest/migrations/users#get-a-user-migration-status
- migrations.getArchiveForAuthenticatedUser — Baixar usuário
GET /user/migrations/{migration_id}/archive
https://docs.github.com/rest/migrations/users#download-a-user-migration-archive
- migrations.deleteArchiveForAuthenticatedUser — Excluir usuário
DELETE /user/migrations/{migration_id}/archive
https://docs.github.com/rest/migrations/users#delete-a-user-migration-archive
- migrations.unlockRepoForAuthenticatedUser — Unlock a user repository
DELETE /user/migrations/{migration_id}/repos/{repo_name}/lock
https://docs.github.com/rest/migrations/users#unlock-a-user-repository
- migrations.listReposForAuthenticatedUser — Listar repositórios de código
GET /user/migrations/{migration_id}/repositories
https://docs.github.com/rest/migrations/users#list-repositories-for-a-user-migration
- orgs.listForAuthenticatedUser — Listar organizações do usuário conectado
GET /user/orgs
https://docs.github.com/rest/orgs/orgs#list-organizations-for-the-authenticated-user
- packages.listPackagesForAuthenticatedUser — Listar pacotes de software do usuário conectado
GET /user/packages
https://docs.github.com/rest/packages/packages#list-packages-for-the-authenticated-users-namespace
- packages.getPackageForAuthenticatedUser — Consultar pacote de software do usuário conectado
GET /user/packages/{package_type}/{package_name}
https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user
- packages.deletePackageForAuthenticatedUser — Excluir pacote de software do usuário conectado
DELETE /user/packages/{package_type}/{package_name}
https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user
- packages.restorePackageForAuthenticatedUser — Restaurar pacote de software do usuário conectado
POST /user/packages/{package_type}/{package_name}/restore
https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user
- packages.getAllPackageVersionsForPackageOwnedByAuthenticatedUser — Listar versões de pacotes do usuário conectado
GET /user/packages/{package_type}/{package_name}/versions
https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-the-authenticated-user
- packages.getPackageVersionForAuthenticatedUser — Consultar versão de pacote do usuário conectado
GET /user/packages/{package_type}/{package_name}/versions/{package_version_id}
https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user
- packages.deletePackageVersionForAuthenticatedUser — Excluir versão de pacote do usuário conectado
DELETE /user/packages/{package_type}/{package_name}/versions/{package_version_id}
https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user
- packages.restorePackageVersionForAuthenticatedUser — Restaurar versão de pacote do usuário conectado
POST /user/packages/{package_type}/{package_name}/versions/{package_version_id}/restore
https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user
- users.listPublicEmailsForAuthenticatedUser — Listar usuários
GET /user/public_emails
https://docs.github.com/rest/users/emails#list-public-email-addresses-for-the-authenticated-user
- repos.listForAuthenticatedUser — Listar repositórios de código do usuário conectado
GET /user/repos
https://docs.github.com/rest/repos/repos#list-repositories-for-the-authenticated-user
- repos.createForAuthenticatedUser — Criar repositório de código do usuário conectado
POST /user/repos
https://docs.github.com/rest/repos/repos#create-a-repository-for-the-authenticated-user
- repos.listInvitationsForAuthenticatedUser — Listar convites no repositório
GET /user/repository_invitations
https://docs.github.com/rest/collaborators/invitations#list-repository-invitations-for-the-authenticated-user
- repos.declineInvitationForAuthenticatedUser — Decline a repository invitation
DELETE /user/repository_invitations/{invitation_id}
https://docs.github.com/rest/collaborators/invitations#decline-a-repository-invitation
- repos.acceptInvitationForAuthenticatedUser — Accept a repository invitation
PATCH /user/repository_invitations/{invitation_id}
https://docs.github.com/rest/collaborators/invitations#accept-a-repository-invitation
- users.listSocialAccountsForAuthenticatedUser — Listar usuários
GET /user/social_accounts
https://docs.github.com/rest/users/social-accounts#list-social-accounts-for-the-authenticated-user
- users.addSocialAccountForAuthenticatedUser — Adicionar usuário
POST /user/social_accounts
https://docs.github.com/rest/users/social-accounts#add-social-accounts-for-the-authenticated-user
- users.deleteSocialAccountForAuthenticatedUser — Excluir usuário
DELETE /user/social_accounts
https://docs.github.com/rest/users/social-accounts#delete-social-accounts-for-the-authenticated-user
- users.listSshSigningKeysForAuthenticatedUser — Listar usuários
GET /user/ssh_signing_keys
https://docs.github.com/rest/users/ssh-signing-keys#list-ssh-signing-keys-for-the-authenticated-user
- users.createSshSigningKeyForAuthenticatedUser — Criar usuário
POST /user/ssh_signing_keys
https://docs.github.com/rest/users/ssh-signing-keys#create-a-ssh-signing-key-for-the-authenticated-user
- users.getSshSigningKeyForAuthenticatedUser — Consultar usuário
GET /user/ssh_signing_keys/{ssh_signing_key_id}
https://docs.github.com/rest/users/ssh-signing-keys#get-an-ssh-signing-key-for-the-authenticated-user
- users.deleteSshSigningKeyForAuthenticatedUser — Excluir usuário
DELETE /user/ssh_signing_keys/{ssh_signing_key_id}
https://docs.github.com/rest/users/ssh-signing-keys#delete-an-ssh-signing-key-for-the-authenticated-user
- activity.listReposStarredByAuthenticatedUser — Listar repositórios de código do usuário conectado
GET /user/starred
https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user
- activity.checkRepoIsStarredByAuthenticatedUser — Verificar repositório de código do usuário conectado
GET /user/starred/{owner}/{repo}
https://docs.github.com/rest/activity/starring#check-if-a-repository-is-starred-by-the-authenticated-user
- activity.starRepoForAuthenticatedUser — Star a repository for the authenticated user
PUT /user/starred/{owner}/{repo}
https://docs.github.com/rest/activity/starring#star-a-repository-for-the-authenticated-user
- activity.unstarRepoForAuthenticatedUser — Unstar a repository for the authenticated user
DELETE /user/starred/{owner}/{repo}
https://docs.github.com/rest/activity/starring#unstar-a-repository-for-the-authenticated-user
- activity.listWatchedReposForAuthenticatedUser — Listar repositórios de código do usuário conectado
GET /user/subscriptions
https://docs.github.com/rest/activity/watching#list-repositories-watched-by-the-authenticated-user
- teams.listForAuthenticatedUser — Listar equipes do usuário conectado
GET /user/teams
https://docs.github.com/rest/teams/teams#list-teams-for-the-authenticated-user
- users.getById — Consultar usuário
GET /user/{account_id}
https://docs.github.com/rest/users/users#get-a-user-using-their-id
- projects.createDraftItemForAuthenticatedUser — Criar rascunho
POST /user/{user_id}/projectsV2/{project_number}/drafts
https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project
- users.list — Listar usuários
GET /users
https://docs.github.com/rest/users/users#list-users
- projects.createViewForUser — Criar usuário
POST /users/{user_id}/projectsV2/{project_number}/views
https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project
- users.getByUsername — Consultar usuário
GET /users/{username}
https://docs.github.com/rest/users/users#get-a-user
- users.listAttestationsBulk — List attestations by bulk subject digests
POST /users/{username}/attestations/bulk-list
https://docs.github.com/rest/users/attestations#list-attestations-by-bulk-subject-digests
- users.deleteAttestationsBulk — Delete attestations in bulk
POST /users/{username}/attestations/delete-request
https://docs.github.com/rest/users/attestations#delete-attestations-in-bulk
- users.deleteAttestationsBySubjectDigest — Delete attestations by subject digest
DELETE /users/{username}/attestations/digest/{subject_digest}
https://docs.github.com/rest/users/attestations#delete-attestations-by-subject-digest
- users.deleteAttestationsById — Delete attestations by ID
DELETE /users/{username}/attestations/{attestation_id}
https://docs.github.com/rest/users/attestations#delete-attestations-by-id
- users.listAttestations — List attestations
GET /users/{username}/attestations/{subject_digest}
https://docs.github.com/rest/users/attestations#list-attestations
- copilotSpaces.listForUser — Listar usuários
GET /users/{username}/copilot-spaces
https://docs.github.com/rest/copilot-spaces/copilot-spaces#list-copilot-spaces-for-a-user
- copilotSpaces.createForUser — Criar usuário
POST /users/{username}/copilot-spaces
https://docs.github.com/rest/copilot-spaces/copilot-spaces#create-a-copilot-space-for-a-user
- copilotSpaces.getForUser — Consultar usuário
GET /users/{username}/copilot-spaces/{space_number}
https://docs.github.com/rest/copilot-spaces/copilot-spaces#get-a-copilot-space-for-a-user
- copilotSpaces.updateForUser — Definir usuário
PUT /users/{username}/copilot-spaces/{space_number}
https://docs.github.com/rest/copilot-spaces/copilot-spaces#set-a-copilot-space-for-a-user
- copilotSpaces.deleteForUser — Excluir usuário
DELETE /users/{username}/copilot-spaces/{space_number}
https://docs.github.com/rest/copilot-spaces/copilot-spaces#delete-a-copilot-space-for-a-user
- copilotSpaces.listCollaboratorsForUser — Listar colaboradores
GET /users/{username}/copilot-spaces/{space_number}/collaborators
https://docs.github.com/rest/copilot-spaces/collaborators#list-collaborators-for-a-copilot-space-for-a-user
- copilotSpaces.addCollaboratorForUser — Adicionar colaborador
POST /users/{username}/copilot-spaces/{space_number}/collaborators
https://docs.github.com/rest/copilot-spaces/collaborators#add-a-collaborator-to-a-copilot-space-for-a-user
- copilotSpaces.updateCollaboratorForUser — Definir colaborador
PUT /users/{username}/copilot-spaces/{space_number}/collaborators/{actor_type}/{actor_identifier}
https://docs.github.com/rest/copilot-spaces/collaborators#set-a-collaborator-role-for-a-copilot-space-for-a-user
- copilotSpaces.removeCollaboratorForUser — Remover colaborador
DELETE /users/{username}/copilot-spaces/{space_number}/collaborators/{actor_type}/{actor_identifier}
https://docs.github.com/rest/copilot-spaces/collaborators#remove-a-collaborator-from-a-copilot-space-for-a-user
- copilotSpaces.listResourcesForUser — Listar usuários
GET /users/{username}/copilot-spaces/{space_number}/resources
https://docs.github.com/rest/copilot-spaces/resources#list-resources-for-a-copilot-space-for-a-user
- copilotSpaces.createResourceForUser — Criar usuário
POST /users/{username}/copilot-spaces/{space_number}/resources
https://docs.github.com/rest/copilot-spaces/resources#create-a-resource-for-a-copilot-space-for-a-user
- copilotSpaces.getResourceForUser — Consultar usuário
GET /users/{username}/copilot-spaces/{space_number}/resources/{space_resource_id}
https://docs.github.com/rest/copilot-spaces/resources#get-a-resource-for-a-copilot-space-for-a-user
- copilotSpaces.updateResourceForUser — Definir usuário
PUT /users/{username}/copilot-spaces/{space_number}/resources/{space_resource_id}
https://docs.github.com/rest/copilot-spaces/resources#set-a-resource-for-a-copilot-space-for-a-user
- copilotSpaces.deleteResourceForUser — Excluir usuário
DELETE /users/{username}/copilot-spaces/{space_number}/resources/{space_resource_id}
https://docs.github.com/rest/copilot-spaces/resources#delete-a-resource-from-a-copilot-space-for-a-user
- packages.listDockerMigrationConflictingPackagesForUser — Consultar pacote de software
GET /users/{username}/docker/conflicts
https://docs.github.com/rest/packages/packages#get-list-of-conflicting-packages-during-docker-migration-for-user
- activity.listEventsForAuthenticatedUser — Listar eventos do usuário conectado
GET /users/{username}/events
https://docs.github.com/rest/activity/events#list-events-for-the-authenticated-user
- activity.listOrgEventsForAuthenticatedUser — Listar eventos da organização
GET /users/{username}/events/orgs/{org}
https://docs.github.com/rest/activity/events#list-organization-events-for-the-authenticated-user
- activity.listPublicEventsForUser — Listar eventos
GET /users/{username}/events/public
https://docs.github.com/rest/activity/events#list-public-events-for-a-user
- users.listFollowersForUser — Listar usuários
GET /users/{username}/followers
https://docs.github.com/rest/users/followers#list-followers-of-a-user
- users.listFollowingForUser — Listar usuários
GET /users/{username}/following
https://docs.github.com/rest/users/followers#list-the-people-a-user-follows
- users.checkFollowingForUser — Verificar usuário
GET /users/{username}/following/{target_user}
https://docs.github.com/rest/users/followers#check-if-a-user-follows-another-user
- gists.listForUser — Listar usuários
GET /users/{username}/gists
https://docs.github.com/rest/gists/gists#list-gists-for-a-user
- users.listGpgKeysForUser — Listar usuários
GET /users/{username}/gpg_keys
https://docs.github.com/rest/users/gpg-keys#list-gpg-keys-for-a-user
- users.getContextForUser — Consultar usuário
GET /users/{username}/hovercard
https://docs.github.com/rest/users/users#get-contextual-information-for-a-user
- apps.getUserInstallation — Consultar usuário
GET /users/{username}/installation
https://docs.github.com/rest/apps/apps#get-a-user-installation-for-the-authenticated-app
- users.listPublicKeysForUser — Listar chaves públicas
GET /users/{username}/keys
https://docs.github.com/rest/users/keys#list-public-keys-for-a-user
- orgs.listForUser — Listar organizações
GET /users/{username}/orgs
https://docs.github.com/rest/orgs/orgs#list-organizations-for-a-user
- packages.listPackagesForUser — Listar pacotes de software
GET /users/{username}/packages
https://docs.github.com/rest/packages/packages#list-packages-for-a-user
- packages.getPackageForUser — Consultar pacote de software
GET /users/{username}/packages/{package_type}/{package_name}
https://docs.github.com/rest/packages/packages#get-a-package-for-a-user
- packages.deletePackageForUser — Excluir pacote de software
DELETE /users/{username}/packages/{package_type}/{package_name}
https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user
- packages.restorePackageForUser — Restaurar pacote de software
POST /users/{username}/packages/{package_type}/{package_name}/restore
https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user
- packages.getAllPackageVersionsForPackageOwnedByUser — Listar versões de pacotes
GET /users/{username}/packages/{package_type}/{package_name}/versions
https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-a-user
- packages.getPackageVersionForUser — Consultar versão de pacote
GET /users/{username}/packages/{package_type}/{package_name}/versions/{package_version_id}
https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user
- packages.deletePackageVersionForUser — Excluir versão de pacote
DELETE /users/{username}/packages/{package_type}/{package_name}/versions/{package_version_id}
https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user
- packages.restorePackageVersionForUser — Restaurar versão de pacote
POST /users/{username}/packages/{package_type}/{package_name}/versions/{package_version_id}/restore
https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user
- projects.listForUser — Listar usuários
GET /users/{username}/projectsV2
https://docs.github.com/rest/projects/projects#list-projects-for-user
- projects.getForUser — Consultar usuário
GET /users/{username}/projectsV2/{project_number}
https://docs.github.com/rest/projects/projects#get-project-for-user
- projects.listFieldsForUser — Listar usuários
GET /users/{username}/projectsV2/{project_number}/fields
https://docs.github.com/rest/projects/fields#list-project-fields-for-user
- projects.addFieldForUser — Adicionar usuário
POST /users/{username}/projectsV2/{project_number}/fields
https://docs.github.com/rest/projects/fields#add-field-to-user-owned-project
- projects.getFieldForUser — Consultar usuário
GET /users/{username}/projectsV2/{project_number}/fields/{field_id}
https://docs.github.com/rest/projects/fields#get-project-field-for-user
- projects.listItemsForUser — Listar usuários
GET /users/{username}/projectsV2/{project_number}/items
https://docs.github.com/rest/projects/items#list-items-for-a-user-owned-project
- projects.addItemForUser — Adicionar usuário
POST /users/{username}/projectsV2/{project_number}/items
https://docs.github.com/rest/projects/items#add-item-to-user-owned-project
- projects.getUserItem — Consultar usuário
GET /users/{username}/projectsV2/{project_number}/items/{item_id}
https://docs.github.com/rest/projects/items#get-an-item-for-a-user-owned-project
- projects.deleteItemForUser — Excluir usuário
DELETE /users/{username}/projectsV2/{project_number}/items/{item_id}
https://docs.github.com/rest/projects/items#delete-project-item-for-user
- projects.updateItemForUser — Atualizar usuário
PATCH /users/{username}/projectsV2/{project_number}/items/{item_id}
https://docs.github.com/rest/projects/items#update-project-item-for-user
- projects.listViewItemsForUser — Listar usuários
GET /users/{username}/projectsV2/{project_number}/views/{view_number}/items
https://docs.github.com/rest/projects/items#list-items-for-a-user-project-view
- activity.listReceivedEventsForUser — Listar eventos do usuário conectado
GET /users/{username}/received_events
https://docs.github.com/rest/activity/events#list-events-received-by-the-authenticated-user
- activity.listReceivedPublicEventsForUser — Listar eventos
GET /users/{username}/received_events/public
https://docs.github.com/rest/activity/events#list-public-events-received-by-a-user
- repos.listForUser — Listar repositórios de código
GET /users/{username}/repos
https://docs.github.com/rest/repos/repos#list-repositories-for-a-user
- billing.getGithubBillingAiCreditUsageReportUser — Consultar informação de cobrança
GET /users/{username}/settings/billing/ai_credit/usage
https://docs.github.com/rest/billing/usage#get-billing-ai-credit-usage-report-for-a-user
- billing.getGithubBillingPremiumRequestUsageReportUser — Consultar informação de cobrança
GET /users/{username}/settings/billing/premium_request/usage
https://docs.github.com/rest/billing/usage#get-billing-premium-request-usage-report-for-a-user
- billing.getGithubBillingUsageReportUser — Consultar informação de cobrança
GET /users/{username}/settings/billing/usage
https://docs.github.com/rest/billing/usage#get-billing-usage-report-for-a-user
- billing.getGithubBillingUsageSummaryReportUser — Consultar informação de cobrança
GET /users/{username}/settings/billing/usage/summary
https://docs.github.com/rest/billing/usage#get-billing-usage-summary-for-a-user
- users.listSocialAccountsForUser — Listar usuários
GET /users/{username}/social_accounts
https://docs.github.com/rest/users/social-accounts#list-social-accounts-for-a-user
- users.listSshSigningKeysForUser — Listar usuários
GET /users/{username}/ssh_signing_keys
https://docs.github.com/rest/users/ssh-signing-keys#list-ssh-signing-keys-for-a-user
- activity.listReposStarredByUser — Listar repositórios de código
GET /users/{username}/starred
https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user
- activity.listReposWatchedByUser — Listar repositórios de código
GET /users/{username}/subscriptions
https://docs.github.com/rest/activity/watching#list-repositories-watched-by-a-user
- meta.getAllVersions — Get all API versions
GET /versions
https://docs.github.com/rest/meta/meta#get-all-api-versions
- meta.getZen — Get the Zen of GitHub
GET /zen
https://docs.github.com/rest/meta/meta#get-the-zen-of-github

Uma boa primeira pergunta

Quais pendências ainda estão abertas antes da próxima versão?

Se falhar

Verifique a conta, autorizações expiradas, aprovação do aplicativo, escopos do provedor e permissões do Toolcape. Envie ao suporte apenas erros sem dados sensíveis. Nunca cole senhas, tokens ou chaves secretas em uma conversa com IA.

Markdown